Posted: 20 Jun 2009 09:59 Post subject: Sponser search
Can you have it so when you search for sponsors that the list of paysites the sponsor has is hidden. The thumbnail and short description is more than enough
Ive even written the code for you, it very simple to implement
Code:
<script>
function toggleSections(section)
{
document.getElementById(section).style.display = "block";
if (section != "add")
document.getElementById("add").style.display = "none";
function onload_remember_page()
{
// always store the current page on page load
document.remember_page.my_value.value = "none";
document.remember_page.submit();
}
</script>
<!-- #details is the anchor so the link doesnt jump to the top of the page when clicked-->
<li><a href="#details" onclick="toggleSections('add'); return false;" class="link2">More info</a></li>
<div id="add" style="display: none" align="left">
Hidden here until link clicked
</div>