Hi,
I'm looking at this .js file and the jquery looks like:
$.fn.redirect
$.redirect
$.request
or
(function($){$.log=function(message){if(window.console){if(window.console.debug)
window.console.debug(message);else if(window.console.log)
window.console.log(message);}
else
alert(message);};
Are these built-in jQuery methods or is it custom? Just trying to understand this notation.
Is (function($){}; a way to start of your .js file?