jQuery issue with anchor tag using jqTransform
- by James Helms
I'm using jqtransform on my site. When the user is on a for them to be able to use hot keys to move through the selections. I added this function:
$wrapper.find('a').keydown(function (e) {
var Esc = 27;
var code = (e.keyCode ? e.keyCode : e.which);
if(code== Esc || (code>=65 &&code<=90)){
…