Invisible Clickable Button

windows

Guest
Does anyone know the tag or property to set to false to make a button invisible. Can this be done and the button still be able to function?<br />
<br />
Or<br />
<br />
How do you detect what keys are pressed? Such as, someone pressing CTRL+L. Then allowing that "special combo" to link to another page.<br />
<br />
Thanks for all and any suggestions or remarks (even smart ass ones!).<!--content-->How about this:<br />
<br />
<input type="button" style="color: transparent; background-color: transparent; border: none;" onclick="alert('test');"><!--content-->I can answer the first question.<br />
<br />
<input type="button" style="visibility: hidden;"><br />
<br />
not too sure about detecting keyhits though.<br />
<br />
Gaz.<!--content-->If you set the visibility to hidden, you can't still click the button...<!--content-->thanks for sharing that Pyro, I had no idea of that (not that I have had to use it though :P<br />
<br />
Cheers, Gaz.<!--content-->Thanks for all the Help!!!<!--content-->lol... Yeah, and invisible yet clickable button is almost an oxymoron, no? Anyway, I'm happy to have helped... :)<!--content-->
 
Back
Top