I'd like to have an event that fires every time a Dom element is initialized, like so:
HTML
<div id="container">
<div id="data">data!</div>
</div>
<div id="clickme">Click me!</div>
Javascript
$(function() {
var i = 0;
$('#clickme').click(function() {
$('#container').html('<div id="data">data '+i+'</div>');
i++;
});
// this event gets called only the first time #data element is ready
// I want it to be called each time #data comes into being
$('#data').ready(function() {
alert('element data ready!');
});
});
I've tried:
// doesn't work
$('#data').live('ready', function() {
alert('element data ready (live)');
});
Edit: I am interested in doing that for elements that are inserted by ajax. For example:
$.post('/myaction/', {
param: 'value'
},
function(data) {
$('#someContainer').replaceWith(data);
});
// this function operates on elements returned by the ajax call, so they are not available at this point.
myFunction();
// so I'd better call myFunction() when the ajax data is inserted
});
fiddle here: http://jsfiddle.net/nf8CP/
For your updated question, just move your function to the callback, and you're done.
There are DOM Mutation events, but I believe they're deprecated, and don't have full browser support.
There's also the
livequery
plugin, but it's really overkill.The
.ready()
handler does not handle loading events for individual elements. Only for the DOM loaded events. These three examples all have the same behavior:$(document).ready(...
$('document').ready(...
$("#data").ready(...
$().ready(...
There is no difference. The argument passed to
$
is ignored.The proper solution is to invoke the code you want when you create the element.
Also, given your example, a better and less destructive solution would be to simply modify the text in
#data
instead of destroying the element with.html()
.