All Questions
2 questions
0
votes
2
answers
93
views
Call own method in jQuery queue
I have created my own method in jQuery with:
$.fn.plop = function(){
// Method
};
And I'm trying to call it in a queue like:
$(elems[0]).plop().delay(800).fadeOut();
But Firefox return the ...
0
votes
1
answer
1k
views
can't fix Uncaught TypeError: Cannot call method 'jQuery' of undefined on line 562
var nn=oTable.jQuery('input:checked').serialize() keeps throwing error even when using noConflict. on jsfiddle it shows that my code is corect but still the problem persists.i've searched enough in ...