/    Sign up×
Community /Pin to ProfileBookmark

Looking for a script

I’m looking for a script that if you put in a value on a form on one page you can have it add this value in on another form which you don’t control. What I want to do make a page to submit to contest site but instead of having to type in the same info over and over again I can just hit a submit button.

to post a comment
JavaScript

1 Comments(s)

Copy linkTweet thisAlerts:
@ShrineDesignsDec 13.2002 — this will do the trick

<html>

<head>

<title></title>

<script language="JavaScript" type="text/JavaScript">

<!--

function copyIt(from,to){

to.value = from.value;

}

//-->

</script>

</head>

<body>

<form name="myForm">

<input name="myTextA" type="text" onKeyUp="copyIt(this,myText?">

<input name="myTextB" type="text" onKeyUp="copyIt(this,myTextA)">

</form>

</body>

</html>
×

Success!

Help @ascentpc 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.16,
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,
)...