hotkeys in html

liunx

Guest
hi need to know how i could put in hotkeys in html...for example i would like this<br />
-----------<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"state_substate.asp?code=1" title="WORK LIST BROWSE START(BRS)" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('imgBRS','','images/M_BRS_MOUSEOVER.jpg',1)"><img name="imgBRS" border="0" src=http://www.webdeveloper.com/forum/archive/index.php/"images/M_BRS_CLICK.jpg" width="63" height="27"></a><br />
-------------<br />
<br />
to have a ctrl B as its hotkey..<br />
<br />
thanks,<br />
biktoryah :confused:<!--content-->i think you'd include the code accesskey="b" in the a tag:<br />
<br />
Code:
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"state_substate.asp?code=1" title="WORK LIST BROWSE START(BRS)" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('imgBRS','','images/M_BRS_MOUSEOVER.jpg',1)" accesskey="b"><img name="imgBRS" border="0" src=http://www.webdeveloper.com/forum/archive/index.php/"images/M_BRS_CLICK.jpg" width="63" height="27"></a><!--content-->i tried using accesskey="b" but unfortunately it didnt work...do u have any other suggestions? tnx<br />
<br />
biktoryah<!--content-->i used Internet Explorer version 6.0<br />
<br />
tnx<br />
biktoryah<!--content-->when i press alt b i could see in the status bar that the url that it is suppose to go to is displaying..but unfortunately its not submitting...is there a way to resolve this?<br />
<br />
fyi, m using frames..the accesskey is on the left_frame while the page that it should go to is in the right_frame ( i dont know if this has some effect to the accesskey but i do have a base target on the left_frame)<br />
<br />
biktoryah<!--content-->just discovered this while i was testing the system...<br />
<br />
in pressing alt b the status bar still shows the correct URL it should go to...and if i press enter thats when the page would submit...<br />
<br />
is there anyway wherein i cud just force the page to submit (press enter)<br />
<br />
tnx a bunch,<br />
biktoryah :confused:<!--content-->
 
Back
Top