first_page the funky knowledge base
personal notes from way, _way_ back and maybe today

jQuery: JQuery: “Error: jQuery.support is undefined”; Schleichermann; JQuery VisualStudio Intellisense

jQuery.support is undefined

if ( !jQuery.support.opacity && name == “opacity” ) {

If you are getting this error when trying to use JQuery.hide or JQuery.show it is most likely because you are also using the JQuery VisualStudio Intellisense Documentation ( VSDOC ). The error is simply caused by the fact that you are loading the VSDOC after JQuery. JavaScript loads/renders in the order you have it on the page and by loading the documentation after you load JQuery you are loading things out of order. Simply make sure you load the VSDOC first then JQuery and you are good to go.

<script type=”text/javascript” src=”jquery-1.3.2-vsdoc.js”></script> <script type=”text/javascript” src=”jquery-1.3.2.min.js”></script>

[http://schleichermann.wordpress.com/2009/03/10/ jquery-error-jquerysupport-is-undefined/]

mod date: 2009-08-29T04:15:31.000Z