This is a very common question with a simple solution. Just put whatever you want in the loading area. For example the first demo has as its first trigger link:
Code:
<a href="../dynamicindex17/sofagirllarge.jpg" rel="enlargeimage" rev="targetdiv:loadarea" title="Nothing better than relaxing on the sofa sometimes">
Which onmouseover puts:
Code:
<div style="">
<img src="../dynamicindex17/sofagirllarge.jpg" style="border-width:0"/>
<br/>
Nothing better than relaxing on the sofa sometimes
</div>
into the waiting:
Code:
<div id="loadarea" style="width:510px; height: 220px">
</div>
If you want that to be there to begin with, just hard code it:
Code:
<div id="loadarea" style="width:510px; height: 220px">
<div style="">
<img src="../dynamicindex17/sofagirllarge.jpg" style="border-width:0"/>
<br/>
Nothing better than relaxing on the sofa sometimes
</div>
</div>
In fact, you may put anything you like in there. It will be overwritten as soon as any trigger link is activated.
Bookmarks