Is it possible to create a function in the onload event of an image? Is there a method that makes this possible?
<input type='text' name='data' onblur='myFunction(this.value)'>
<img src='img/none.gif' onload="function myFunction(text){alert(text)}">
the image and field will be loaded by an ajax function.