vote up 2 vote down star

Hi everyone, I have a livesearch script that i need to populate my html menu with information.

i have a menu how looks something like this:

<a href="?page=page&id=">Menu item</a>

what i'm looking for is a piece of code that would do this to the link:

<a href="?page=page&id=1">Menu item</a>

i have a Javascript that pulls out value ID from a database table (livesearch), now i only need it to get into the href on the fly.

Any suggestions?

flag

67% accept rate
1  
this seems extremely suspicious - you shouldn't depend on JS for your application and this looks like there might be a better way to solve this server-side – annakata Sep 13 at 8:53
I don't want to reload the page thats why i wanted to do it this way. Any suggestions how to do the same thing but not reload the page? – Filip Palm Sep 13 at 9:01

2 Answers

vote up 1 vote down check
function addPageIds(){

    var links = document.getElementsByTagName("a");
    for (var i = 0; i < links.length; i++){
        if (/id=$/.test(links[i].href)) links[i].href += "1";
    }

}
link|flag
MiffTheFox, this worked great. There is a typo in link[i].href (links[i].href). Thanks a bunch! – Filip Palm Sep 13 at 9:52
vote up 4 vote down
<a href="?page=page&id=" id="link1">Menu item</a>

<script type='text/javascript'>
var myidtoinsert = 5;
document.getElementById("link1").href += myidtoinsert;
</script>

Give your a tag an id and then just use document.getElementById to get at the href attribute.

link|flag
Perfect ChristopheD, just what i was looking for. Thanks a bunch! – Filip Palm Sep 13 at 8:58
2  
The downside with thisone was that i need one id="link+" for every href. – Filip Palm Sep 13 at 9:05
1  
You need to give the element a unique identifier as to be able to manipulate it DOM-wise in Javascript. The only javascript alternative I can think of for the moment would be 'getting -all- the a tags' on a page and iterating over them for automatically adding href tags. Is there a reason you can't generate the a tag id @ the server-side? – ChristopheD Sep 13 at 9:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.