/    Sign up×
Community /Pin to ProfileBookmark

How to replace a part of a string in a form field…

[code=html]<input type=”button” value=”Delete” onClick=”DeleteThis(‘~15~’)”>
<input type=”text” name=”CATEGORYH” value=”~18~~15~~20~”>[/code]

So when but Delete button is clicked, how could it be done that the CATEGORYH field changes its value to :

<input type=”text” name=”CATEGORYH” value=”~18~~20~”>

Thanks!

to post a comment
JavaScript

2 Comments(s)

Copy linkTweet thisAlerts:
@DokSep 05.2008 — Try this
[code=html]<input type="button" value="Delete" onclick="DeleteThis('~15~')" />
<input type="text" id="category" value="~18~~15~~20~" />[/code]

and
[CODE]function DeleteThis(s) {
var cat = document.getElementById('category');
cat.value = cat.value.replace(s,'');
}[/CODE]
Copy linkTweet thisAlerts:
@arron3authorSep 05.2008 — Perfect!!

Thanks so much!!

-Arron
×

Success!

Help @arron3 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 5.18,
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: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

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