what is the normal way to write it?

HTML, CSS and anything else that deals with client side capabilities.

Moderator: General Moderators

Post Reply
User avatar
wvoyance
Forum Contributor
Posts: 135
Joined: Tue Apr 17, 2012 8:24 pm

what is the normal way to write it?

Post by wvoyance »

How do other people write this:

<body>
<form method="get">
enter one ISBN: <input type="text" name="isbn" onChange="start(this.value)">
<button type="submit">Submit</button>
</form>
</body>


I can run this code on firefox, but not IE.
User avatar
Christopher
Site Administrator
Posts: 13596
Joined: Wed Aug 25, 2004 7:54 pm
Location: New York, NY, US

Re: what is the normal way to write it?

Post by Christopher »

Where is the rest of the page? Where is the <head> and the start() function?
(#10850)
User avatar
wvoyance
Forum Contributor
Posts: 135
Joined: Tue Apr 17, 2012 8:24 pm

Re: what is the normal way to write it?

Post by wvoyance »

Christopher wrote:Where is the rest of the page? Where is the <head> and the start() function?
I though it is irrelevant. But here it is:

http://pastebin.com/iCu9zDBq
Post Reply