what is the normal way to write it?
Posted: Thu Jun 14, 2012 8:33 pm
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.
<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.