私のウェブサイトには、電子メールのサインアップ ボックスと検索ボックス (どちらもサイド バーにあります) の2 つのフォームがあります。常にメールサインアップフォームを開きます。つまり、サイト検索フォームが開かなくなります。
これを修正する方法がわかりません。何かアイデアはありますか?
フォームを表示するためにテキストウィジェットで使用しているコードは次のとおりです。
<div class="signupForm"><form action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=noahsdad', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true">
<p>
<input type="text" name="email" onblur="if (this.value == '') {this.value = 'Enter your email address';}" onfocus="if (this.value == 'Enter your email address') {this.value = '';}" value="Enter your email address"/>
</p>
<input type="hidden" value="noahsdad" name="uri"/><input type="hidden" name="loc" value="en_US"/>
<input type="submit" value="Subscribe" /></div>