I am trying to display an offer when the page loads.
The offer works and displays using the onClick method (meaning there is nothing wrong with the 'getOffers.php' script:
<div class="container" onclick="getRequest('<?=$root?>getOffers.php')">
<div id="offers" class="home-box">
<h3>Offers</h3>
<p id="target"></p>
</div><!-- /#offers -->
</div><!-- /.container -->
Whenever i try:
<div class="container" onload="getRequest('<?=$root?>getOffers.php')">
it doesn't seem to work, could somebody kindly tell my what i am doing wrong.