ポップアップ#1を開くためにカラーボックスを使用しています:
<li class="getquotebtn"><a href="<?php bloginfo ('template_directory'); ?>/get-quote.php?productID=<?php echo $post->ID; ?>">Get Quote</a></li>
そしてjquery:
$('.getquotebtn a').colorbox();
これはうまくいきます。しかし、別のポップアップを開きたい get-quite.php のコンテンツ内に別のボタンがあります...
<form name="getquotedata" action="" method="post">
<input type="text" name="nameandsurname" id="popupnamefield" onblur="this.value=!this.value?'<?php _e('Name and Surname','medishop'); ?>':this.value;" onfocus="this.select()" onclick="if (this.value=='<?php _e('Name and Surname','medishop'); ?>'){this.value='';}" value="<?php _e('Name and Surname','medishop'); ?>">
<input type="text" name="email" id="popupemailfield" onblur="this.value=!this.value?'youremail@domain.com':this.value;" onfocus="this.select()" onclick="if (this.value=='youremail@domain.com'){this.value='';}" value="youremail@domain.com">
<input type="hidden" name="prod_ID" value="<?php echo $productID_from_url; ?>">
<input type="hidden" name="prod_name" value="<?php echo get_the_title($productID_from_url); ?>">
<input type="hidden" name="prod_url" value="<?php echo get_permalink($productID_from_url); ?>">
<input type="submit" value="Get Quote" id="popupsbmt" onclick="$.colorbox({href:'<?php bloginfo('template_directory'); ?>/get-quote-sendmail.php'}); return false;">
</form>
ここから問題が始まります!
エラーが発生します:This content failed to load.
この問題を解決する方法はありますか?
ありがとう!