1. jQuery $(document).ready shorthand
This is a great tip! Instead of doing this
$(document).ready(function() {

//write your code here

}
You can also do this, both are the same!
$(function(){
//write your code here
});
2. Switch to different CSS style sheets
You want to have different design for your website. You can use [...]