Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

Feedback: irt.org FAQ Knowledge Base Q1065

Feedback on: irt.org FAQ Knowledge Base Q1065

Sent by Ray Pooley on March 04, 2000 at 11:49:35: - feedback #897

Worth:
Very worth reading

Comments:
I am using IE5 and have noticed that onmousedown doesnt work when subbing a form but onclick does.
I have no idea why.


Sent by Rob van Drie on November 12, 2000 at 18:45:17: - feedback #1993

Worth:
Very worth reading

Length:
Just right

Comments:
The problem only occurs if you have only one inputbox. That also means the solution can be simple:

The trick: put in another inputbox after the submit-button. You can make it hidden by making it the same color as the background (using ccs) - don't forget to color the borders as well.




Sent by Warren Omohundro on August 10, 2001 at 19:03:51: - feedback #3073

Worth:
Very worth reading

Comments:
Here is what I did to work around it. Long bit of HTML/Javascript follows, you will need to copy it and run it through HTMLTidy
.................................
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>

<body onload='doPageLoad(null,false,false,null)'>
<form onsubmit="return handleSubmit(this);" method="POST" name="myForm">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>Phrase:</td>
<td>
<input type="text" name="Phrase" size="40" value="sample">
</td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" onclick="doSubmit('searchaction','myForm');" value="Search">
<input type="submit" onclick="doSubmit('findaction', 'myForm');" value="Find">
<input type="submit" onclick="doConfirmSubmit('Do the delete?', 'deleteaction', 'myForm', false);" value="Delete">
</td>
</tr>
</table>
</form>
<form onsubmit="return handleSubmit(this);" method="POST" name="myForm2">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>Help:</td>
<td>
<input type="text" name="Help" size="40" value="Sample 2">
</td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" onclick="doSubmit('helpaction','myForm2');" value="Help">
</td>
</tr>
</table>
</form>
<p>
</body>
</html>




Sent by suganya on Tuesday September 04, 2007 at 11:51:25 - feedback #4992

Worth:
Very worth reading

Length:

Technical:

Comments:
Javascript function was not given...




©2018 Martin Webb