I have pasted code in a page (using the editor) that includes a button that would normally open a page on another site with the . It is a Bible search function. Here is the code
<form action="http://www.biblegateway.com/quicksearch/" method="post">
<table border="1" cellspacing="0" cellpadding="2" style="border-color: #600;">
<tr><th style="background-color: #600; color:#fff; text-align: center; padding: 0 10px;">Lookup a word or passage in the Bible</th></tr>
<tr><td style="background-color: #fff; text-align: center; padding: 0 10px;">
<p style="margin-bottom: 0;">
<input type="text" name="quicksearch" /><br />
<input type="submit" value="Search BibleGateway.com" /><br />
</p>
</td></tr>
</table>
</form>
It displays correctly but when you push the submit button it just goes back to the same page, it doesn't open a new page like it should.
Rut