following code works perfectly on FF and Chrome but not in IE8.
$(window).keyup(function(e) {
var code = e.which
if (code == 9)
{
alert("do stuff");
cellContent();
autoDate();
}
});
This code will recognize the tab and does the function cellContent() and autoDate(). I added alert to see if this functions are ever used on IE8 but it doesnt seem like it recognizes it.
Thanks in advance!