I need a way to use the jquery .live() function to act on elements that are loaded via ajax.
.live()
For instance a div is loaded via ajax .load()<
.load()
For example (expanding on my comment above) this is from the jQuery docs..
$.ajax({ url: 'ajax/test.html', success: function(data) { $('#mydiv').html(data); alert('Load was performed.'); } });
replace the alert with the code you want to run/action you wish to perform