Hi,
I have a jump list that works fine. Basically the user selects an option from the drop down and the selection is posted to a search form.
Here is the code:
<form id="brandForm" name="brandForm" method="post"
action="http://www.domain.com/search.php">
<select name="stext" id="stext"
onchange="document.brandForm.submit()">
<option selected="selected">Select Products... </option>
<option value="Option1">Option 1</option>
<option value="Option2">Option 2</option>
</select>
<input name="posted" id="posted" value="1" type="hidden">
</form>
What I am now trying to do is have the list displayed as a list of links instead of a drop down rather like the 'related tags' you see on sites. Eg. on a page about footballs a list of words such as Football, Soccer World Cup, Sport, Stadium, Fan, Crowd, Cheering, Spectator will be displayed and when one is clicked it performs the same function as my jump list and posts the term to search.php.
I just cannot seem to get this working and I was hoping a fresh pair of eyes would have a solution.
Thanks