/    Sign up×
Community /Pin to ProfileBookmark

Javascript variable to form action?

Hey guys,
I’m having a little difficulty in finding a way to put the contents of a javascript variable into the action section of a form. Either puting it in or writing it there idk. If I have to write to that section, then how can I do it without taking out what’s already in the field?

to post a comment
JavaScript

1 Comments(s)

Copy linkTweet thisAlerts:
@ZeroKilledMar 20.2009 — a bit confusing to me. you meant if there is a value in the action attribute, how you would set another value without clearing the actual? if so, you need a reference to the form and then read the action property. then you would append the new content with the actual value:
<i>
</i>myform = document.forms[0];
// assuming forms[0] is the form;
var myvar = 'whatever is the new content';
// obviously, should be a string;
myform.action = myform.action + myvar;
×

Success!

Help @XTREEMMAK 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.25,
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,
)...