You will discover only moment variations involving these halter wedding dress and involving the first look at and a variety of princess wedding dresses. One has to perform a good deal of study and empire waist wedding dress to discover out and observe the very same and make certain the viability on the item they're acquiring. Every one of these replica have particular defect, plus size wedding dresses, which would make them purchaser through the best authentic Rolex enjoy.
jQuery "Object doesn't support this property or method" 1.4.2 - SOLUTION! « home
posted on 14:57 - 08 June 2010 | posted by Lev
last modified on 18:52 - 11 June 2010 | last modified by Lev
When I released the last version of Theia, I had included the latest version of jQuery (1.4.2) as well, without any consideration into if it really was stable.
Sadly, a quick google for "Object doesn't support this property or method" will show otherwise. Lots and lots of folks out there have been encountering errors in various versions of IE with the latest version of jQuery, as was I. Ironically, the older release of jQuery didn't seem to have this problem.
I stumbled upon one solution which was to go into your advanced security options of IE and unticking an option, but this isn't something you can realistically tell all your visitors to do, so I looked for other solutions. The best one I've been able to come up with was to to add some extra code into your AJAX call telling versions of IE 7 and under to use ActiveX instead of the XMLHttpRequest. This solution has been the best, but it didn't quite do it all for me for a couple of reasons. First of all, I am testing on IE8, where the issue is STILL present, so I needed to catch all versions of IE. Secondly, it is unrealistic for me to go through the hundreds of different AJAX requests and add this code, so instead I am using jQuery's ajaxSetup method to apply the rule to *all* AJAX requests in jQuery, which sure enough completely resolves the issue for me. Here is the code I threw into document's head:
<script type='text/javascript'>
$(
function ()
{
$.ajaxSetup
({
xhr: function()
{
if ($.browser.msie)
{
return new ActiveXObject("Microsoft.XMLHTTP");
}
else
{
return new XMLHttpRequest();
}
}
})
}
)
</script>
$(
function ()
{
$.ajaxSetup
({
xhr: function()
{
if ($.browser.msie)
{
return new ActiveXObject("Microsoft.XMLHTTP");
}
else
{
return new XMLHttpRequest();
}
}
})
}
)
</script>
Hopefully this helps someone else who is struggling with this issue!
Danieo
posted by: guest 72.52.116.236 · date: 2:12 - 14 November 2011
script error
posted by: guest 122.164.25.220 · date: 13:33 - 08 March 2011
Thanks Tons for this fix
posted by: guest 65.183.42.106 · date: 23:00 - 23 August 2010
Thank you!
posted by: guest 187.49.171.76 · date: 22:09 - 17 August 2010
Error
posted by: guest 122.172.112.141 · date: 14:07 - 04 August 2010
My Gratitude
posted by: guest 68.34.64.149 · date: 16:56 - 19 July 2010
Related Items »
- home » IE folks sit tight for a moment
- documentation » The member warning system
- bug tracker » fatal error on chatter box link
- documentation » Signal 9 - a member is given a warning
- home » Update regarding 1.0.0b5
- home » Theia's improved avatar manager
- videos » Theia in-browser avatar cropping
- home » Firefox 3 goes 1 pixel out of bounds with jquery, scrollTop and height()
- home » Firefox and negative CSS positioning with borders
- home » Opera & fixed positioning w/ jQuery animate







