I am trying to write js in a web resource to create a hotkey for activating the contact search field. So far I have this:
parent.document.onkeyup = function(e) {
var e = e || window.event;
if (e.altKey && e.which == 65) {
alert ('keyboard shortcut working!');
return false;
}
}
Above creates the hotkey, but I cannot find the ID for the search input field, and I suppose I'm unsure of how to call it in js as well.

Any help appreciated.
Regards,
Christine
*This post is locked for comments
I have the same question (0)