javascript - Open email popup on enter key hit on email address -


i have email address shown on screen on user can click , outlook mail instance opened (used simple <a mailto:/> ). however, user can use tab sequence come on email address , press enter. want open outlook mail instance in similar fashion on it. how can it?

<a href="" onkeypress="check()">  function check(e) {     if (!e) e = window.event;   // resolve event instance   if (e.keycode == '13')     {       //your code opening outlook     }  } 

Comments

Popular posts from this blog

android - getbluetoothservice() called with no bluetoothmanagercallback -

sql - ASP.NET SqlDataSource, like on SelectCommand -

ios - Undefined symbols for architecture armv7: "_OBJC_CLASS_$_SSZipArchive" -