Hi folks,
How can I do something as follows:
Here, I want to trigger funcX(), when some text is loaded in the div's innerHTML dynamically.
Through jquery I tried the following, but unsuccessfull.
best regards
How can I do something as follows:
Code:
<div id='resultDIV' onload='funcX()'></div>
Through jquery I tried the following, but unsuccessfull.
Code:
$("#resultsDIV").load(function() {
alert("The div has been loaded.");
});
Comment