[Solved] Get Value in JavaScript [closed]
To fix your code: Add the event function doit_onkeypress(a, event) { … <p id=”para” tabindex=”0″ onkeypress=”javascript: doit_onkeypress(this.id, event);”> Add the id into the jQuery selector $(“#” + a + “.token”).each(function () { Add a tabindex to paragraph, so that it can be focused. This is how it works for me: <html> <head> </head> <body> <p … Read more