Closed itsmejake closed 11 years ago
BTW. Smart Wizard 2 runs perfectly with noConflict. I need Version 3 though because of the method goForward
Is the $j assignment being called too early? e.g.
$(document).ready(function() {
var $j = jQuery.noConflict();
$j(document).ready(function() {
$j('#wizard').smartWizard();
});
});
Otherwise, I don't know offhand what might be causing this. Post back here if you figure it out so we can help anyone else who comes across this problem.
Unfortunately, I couldn't find a solution for this. I'm not a jQuery expert though. Instead, I implemented my own goForward method in Version 2.0
Thanks anyways!
If i am implementing smart wizard 3 with noConflict the following error shows up:
Cannot call method 'addClass' of null
var $j = jQuery.noConflict();
$j(document).ready(function(){
});
How can i get it working with noConflict??