The following jQuery works with or without a semicolon after the function. Why?
jQuery(document).ready(function(){
jQuery("#red").treeview({
animated: "fast",
collapsed: true,
control: "#treecontrol",
persist: "cookie"
})
});
It works on all browsers. Wouldn't this cause an error?
The following jQuery works with or without a semicolon after the function. Why?
jQuery(document).ready(function(){
jQuery("#red").treeview({
animated: "fast",
collapsed: true,
control: "#treecontrol",
persist: "cookie"
})
});
It works on all browsers. Wouldn't this cause an error?
JavaScript doesn't actually require semicolons. That's just convention.
http://inimino/~inimino/blog/javascript_semicolons
I remend using semicolons, just like I'd remend indenting your code.