Nothing fancy is needed, just a simple function:

$(function(){ aleter(document) }); //This is your document.ready()
$.load("url", aleter ); //This is the ajax

aleter = function(e) {
   $(".alerter",e).click( function(){ alert('you clicked me.'); } );
}

Hope that helps =)

~Sean

Reply via email to