/    Sign up×
Community /Pin to ProfileBookmark

Getting My Jquery Code to Replace Anchor tag text

I have the following JQuery code in place:-

[code=php]

<script type=”text/javascript”>
$(document).ready(function() {
$(‘#twitter_update_list a’).html(‘GO’);
});
</script>

[/code]

For now that replaces the text of all of the anchor tags within the div ‘twitter_update_list with the text GO however I want to modify this so it replaces all of the anchor tags in that div in this way EXCEPT for the very last anchor tag in that div which I need to stay as it is.

Can anyone help me modify the above code to do this please?

to post a comment
JavaScript

2 Comments(s)

Copy linkTweet thisAlerts:
@aj_nscFeb 21.2011 — This should do it:
<i>
</i>$(document).ready(function() {
$('#twitter_update_list a').not(':last').html('GO');
});
Copy linkTweet thisAlerts:
@jimmyoneshotauthorFeb 21.2011 — Indeed it did. Thanks a lot ?
×

Success!

Help @jimmyoneshot spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 4.29,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...