$(document).ready(function(){
$.fn.newQsNum = function(){
var num_of_qs = 5;
return Math.floor(Math.random()*num_of_qs)+1
}
});
$(window).load(newQsNum);
how do you call a user defined function on windows load? when i looked at the error console, it says the newQsNum is undefined. have i done anything wrong? i just followed
http://jquery-howto.blogspot.com/2008/12/how-to-add-your-own-custom-functions-to.html
loadassignment will run before the stuff inready). You could access your function by$.fn.newQsNum. – bažmegakapa Jun 30 '11 at 10:02