For instance:
<div class="red"></div>
Then that would call a jquery function that would automatically add extra divs and really whatever I want. The rest I know how to do, I just don't know how to call them. Thanks.
--
Greg
Posted 10 April 2010 - 04:58 PM
<div class="red"></div>
Posted 11 April 2010 - 10:24 AM
$(".red").append("Additional HTML here.");
Posted 12 April 2010 - 08:03 AM
