Like allways, in Firefox, Chrome, Safari and Opera everything works without a problem. But IE… This is another story 🙂
Here is my full code: http://pastebin.com/ZdzzFayJ
At least one thing good in IE, come to me with the following error:
SCRIPT65535: Unexpected call to method or property access.
jquery.min.js, line 3 character 29586
What is wrong? I can’t find a bug 🙁
UPDATE
I cleaned up my code, javascript functions are now called as a jQuery plugin. I am still getting an error, but now I know where.
In my code I put a comment IE ERROR next to the code where IE alert the error message.
PLUGINS: http://pastebin.com/6Dnd1qtd
jQuery : http://pastebin.com/wiHALjZx
I have no idea why IE breaks there.. Any solutions?
Regards, Mario
I solved the problem in the following way:
"//html5shiv.googlecode.com/svn/trunk/html5.js"to IE recognize that I am using HTML5 tags such as section, header,…$(defaultOpts.data_container).html("HTML CONTENT")I usedefaultOpts.data_container.html("HTML CONTENT"). So I send object element$(#ID)in parameter to plugin instead of sending just element ID"#ID".Now, everything working OK. Thank you all for your support and effort.