Monday, August 2, 2010

jQuick Note

$('#idofdiv').function();

is the same as

var obj = document.getElementById('idofdiv');
$(obj).function();

No comments: