Javascript – Key events with libraries

Feb 24 2011 Published by admin under Java Script

Key press event is very useful in javascript. it is sometimes required to identify the key press. This can be done by getting the keycode of the key pressed.

To get the key code we use onkeyup, onkeydown and onkeypress events of javascript. These events can be bind to listen all the key events on certain elements or the document itself.
Continue Reading »

No responses yet

Javascript – window onload event – complete

Oct 18 2010 Published by admin under Java Script

Different events based on basic javascript/ javascript frameworks
window.onload
document onload
$(document).ready
$(window).load
Event.observe
YAHOO.util.Event.onDOMReady
dojo.connect

Continue Reading »

7 responses so far