I have created an <input>
HTML element using Javascript. Now I want to add an onblur
event handler to this element dynamically. However I do not understand how I can pass the created element as an argument to the function. Here's my code:
element = document.createElement("input");
element.onblur = hello_function;
In the above code you can see that the element is created. Now I want to pass that element to hello_function
. How can I do that?
function hello_function(element) {
alert(element);
}