javascript - To set focus on Anchor Tag on enter Key press -
i have used anchor tags in code mentioned below:
<div title="main" > <a href="/home.aspx"> <div class="link-title"> home </div> </a> </div> <div title="contact" > <a href="/contact.aspx"> <div class="link-title"> contact </div> </a> </div>
on enter key press opens specific page/link default tab navigation starts url. want during tab navigation when selects particular link on enter key press specfic page/link open , focused should remain on link/anchor tag. moves , start default navigation url.
i have used css code:
/* set keyboard focus on tab press*/ a:focus { outline: 1px dotted black; }
can please assist me fix this?
<div title="main" > <a href="/home.aspx" id="home"> <div class="link-title"> home </div> </a> </div> <div title="contact" > <a href="/contact.aspx"> <div class="link-title"> contact </div> </a> </div> $(function(){ $('#home').focus(); })
check code
Comments
Post a Comment