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, Quote Link to comment 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."); }; Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.