I have a dynamic href that does not have a class or id and I need to accomplish 2 things. First I need to be able to identify that the href is qualify.

Something along the lines of if

$("a[href*='somestring']")

do this:

captures whole href tag and prepends to it.

Is this possible?

link|improve this question

75% accept rate
It's not clear what you mean by "identify that the href is qualify." – Blazemonger Jan 9 at 20:07
feedback

1 Answer

up vote 4 down vote accepted

You can use the attr() method with a function argument to modify the attribute instead of replacing it:

$('a').attr('href',function(i,v) { // you should use a more specific selector
    return "http://www.google.com?search=" + v;
});

http://jsfiddle.net/mblase75/fXUNE/

link|improve this answer
Yours is better than mine, I never knew you could do this. TIL! – subkamran Jan 9 at 20:15
That works for second part but first I need to be able to match the href. So let's say I only want it to work with hrefs that have the string "somestring" in it (blahblah.com/somestring/help). I imagine an if/else statement would work? – Gavin Jan 9 at 21:34
Just use a more specific selector. You were already on the right track with the attribute contains selector. – Blazemonger Jan 9 at 21:36
Of course! Thanks! – Gavin Jan 10 at 18:10
feedback

Your Answer

 
or
required, but never shown

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