I generally use this in jquery
$(document).ready(function() {
//stuff
}
I was just on a site that heavily uses jquery and they call it using
$j(document).ready(function() {
//stuff
}
On this site they start almost everything out with a j...
function PostComment(form) {
form = $j(form);
$j('#CommentSubmitButton').hide();
$j('#CommentInProgress').show();
$j.post('/utils/ajaxhandler.aspx', form.serialize(), function(data) {
$j('#CommentInProgress').hide();
$j('#CommentSubmitButton').show();
});
}
Is this just another way of doing it or is this dependent on a differnt version of jquery or other?