In plain vanilla JavaScript, with no libraries? It's an error. $ is simply an identifier, and is undefined unless you define it.
jQuery defines $ as it's own "everything object" (also known as jQuery so you can use it without conflicting with other libraries). If you're not using jQuery (or some other library that defines it), then $ will not be defined.
Or are you asking what the equivalent is in plain JavaScript? In that case, you probably want window.onload, which isn't exactly equivalent, but is the quickest and easiest way to get close to the same effect in vanilla JavaScript.
$(document).ready()event without using any library, give a look to this: stackoverflow.com/questions/1795089/… – CMS Feb 21 '10 at 5:47$(document).ready()- books.google.com/… . It also uses theaddEventevent binding abstraction written by Dean Edwards, the code of which is also in the book :) – Russ Cam Feb 21 '10 at 17:57