Showing posts with label javascript. Show all posts
Showing posts with label javascript. Show all posts

Thursday, December 3, 2009

javascript quick short ones

Getting the elements by Id

var btn = document.getElementById(btnName);
if (btn) btn.click();