Re: JavaScript not working after including Bootstrap CSS on master page
Hi NWRITER,Based on your code, I cannot reproduce your issue. I think you should use Developer Tools(F12) to inspect embed element(Ctrl+B). You should inspect the embed element whether having Bootstrap...
View ArticleRe: JavaScript not working after including Bootstrap CSS on master page
Hi Candice/Rion,I tried adding jquery above end of body tag,below is my master page code, If I remove bootstrap link from master page ,function PlaySound will work on all the pages,if i keep bootstrap...
View ArticleRe: JavaScript not working after including Bootstrap CSS on master page
Did you try using the timeout approach that I mentioned earlier?Additionally, you might try using the Developer Tools (F12) within your browser to ensure that no errors are present in the Console...
View ArticleRe: JavaScript not working after including Bootstrap CSS on master page
Hi NWRITER,You could also use Javascript and bootstrap together. Just above the end of the body tag, add the jQuery file and the bootstrap.min.js file using the script tag with src attribute. Make sure...
View ArticleRe: JavaScript not working after including Bootstrap CSS on master page
Hi oned,I need to have bootstrap also on the page and play the sound also in the same page,if i include bootstrap either on the page or master page then pay sound is not working .
View ArticleRe: JavaScript not working after including Bootstrap CSS on master page
<head runat="server"> this will available in all pages <asp:ContentPlaceHolder ID="HeadContent" runat="server"> this will be replaced by page head...
View ArticleRe: JavaScript not working after including Bootstrap CSS on master page
Hi RionThanks for your reply!In my master page when i am including bootstrap css playsound is not working otherwise its working,bootstrap is required for designing purpose.Pl suggest.<link...
View ArticleRe: JavaScript not working after including Bootstrap CSS on master page
Sometimes this can occur as a race-condition (e.g. the function is not ready by the time it is called). You can avoid this by adding a slight delay to ensure that it is ready by using the setTimeout...
View ArticleJavaScript not working after including Bootstrap CSS on master page
Hi,I am using below code for playing sound alert1. when i apply master page it doesn't work <script type="text/javascript"> var soundObject = null; function PlaySound() { if (soundObject != null)...
View ArticleRe: Sound Alert on client side on web page
Since i was not able to figure out how to make it work,have chosen other solution which is much simpler so that in case somebody need it can refer: Place this above end of body tag in master...
View Article