abdfahim Posted May 10, 2010 Share Posted May 10, 2010 Hi, I want to display a messgae (alert) whenever anyone click space in my webpage. Now, is there any way to do this other than putting the onkeypress in BODY tage? Can I put onkeypress in any other place and have the same result? Thanks, Link to comment https://forums.phpfreaks.com/topic/201220-body-onkeypress/ Share on other sites More sharing options...
xenophobia Posted May 10, 2010 Share Posted May 10, 2010 Try: document.body.onkeypress=function(e) { alert("Hello."); }; Link to comment https://forums.phpfreaks.com/topic/201220-body-onkeypress/#findComment-1055675 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.