I have blinking text modal dialog box and slideshow with jquery. They working just great. But when im clicking my button this (slideshow, blinking, dialog box) stops working . This conflict started when i inserted my asp:ScriptManager and asp:UpdatePanel in my master page
I have multiple jquery files in my project. Yesterday googled this problem and find solution. I edited this
$(document).ready(function () {
With THis
function pageLoad() {
Now problem is that if i will use this in all my jquery files. Every scripts will stops working.
THis is how my buttons looks like:
<input type="button" id="btnReset" class="default_button" value="Reset" runat="server"
onserverclick="btnReset_Click" />
Im getting this worning in javascript console:
Resource interpreted as Other but transferred with MIME type undefined
P.s i inserted ScriptManager, UpdatePanel, ContentTemplate bellow form(masters page) so all my page is inside this tags even content place holder
Please somebody im trying to fix it already 5 days.
Thanks
I’m using Script Manager and jQuery together without any problems.
works perfectly. What was the conflict you had?