I have a number of DIV's on my page with ID values - for some of the DIVs I want them to flash utilising the Scriptabulous ajax library on MouseOver, thats working fine with this code...
<div onMouseover="Effect.Pulsate(this)" id="righthand_checklist_interests">
<li class="righthand_checklist_bullets">
<a href="profile_edit_activities.php" class="righthand_maintext_incomplete" title="Click to complete this section of your profile">
Add your Activities</a>
</li>
</div>
Now I also want to instruct this DIV's contents to flash from the user rolling over another part of the page, however upon trying to achieve this, I get the error (via Firebug) that the value passed is NULL, here's the call for it to flash from elsewhere on the page...
<div onMouseOver="Effect.Pulsate('righthand_checklist_interests');">
Why isn't this working?
Thanks!