Hi, Sorry for this question, but is ist possible to use jquery in the load js Event of the Form?
Hi YOOlabs,
Yes, it's no problem but you need to make sure that it is in NoConflict mode. There's an example in this FAQ - though actually that was set up in a Custom Code action.
Bob
Yes, it's no problem but you need to make sure that it is in NoConflict mode. There's an example in this FAQ - though actually that was set up in a Custom Code action.
Bob
Thanks,
missed that.
As I already load jquery in noconflict mode in another part of the page,
i can simply use:
missed that.
As I already load jquery in noconflict mode in another part of the page,
i can simply use:
(function($){
$(document).bind('ready', function() {
mycode
});
})(jQuery);
This topic is locked and no more replies can be posted.