oscar esp wrote:
1)I am using some plugins to build a page.
2)I am using jQuery.noConflict();
I have a a page that works fine using: validatorr, metada plugins.
However when I use a tabs 2.7 plugin in order to load that page into a
tab a error is produced
Microsoft JScript runtime error: 'jQuery' is undefined
any idea?
I couldn't reproduce that error. The following worked fine for me in IE
6, 7 and Firefox 2:
var _ = jQuery.noConflict();
_(function() {
_('#container-1').tabs();
});
As well as this:
jQuery.noConflict();
jQuery(function() {
jQuery('#container-1').tabs();
});
Could you post your code? Maybe I can spot the error then.
-- Klaus