I would appreciate any help on this issue.
Lets say I want to load controls for different items on the page AFTER it has finished loading.
So:
Object 1
<div id="controls1" class="controls" item_id="1"></div>
Object 2
<div id="controls2" class="controls" item_id="2"></div>
Object 3
<div id="controls3" class="controls" item_id="3"></div>
How could I use jQuery to popular the DIVs with class of "controls" using an AJAX call? In this case, I guess it will have to do 3 ajax calls to popular each DIV.
My ajax to grab content is ajax.php?request=controls&item_id=
Thanks!