unemployment Posted June 13, 2011 Share Posted June 13, 2011 function backspace_delete(e, delete_ele_id) { if (!e) { // IE reports window.event instead of the argument e = window.event; } var keycode; if (document.all) { // IE keycode = e.keyCode; } else { // Not IE keycode = e.which; } if (keycode == 8 && with_field.value == '') { if (document.all) { //IE removeElementById(delete_ele_id); } else { //Non IE removeElementById(delete_ele_id); } } } Quote Link to comment https://forums.phpfreaks.com/topic/239261-my-function-fails-in-chrome/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.