このページ「index.php」があり、その中にポップアップボックスを呼び出す次のリンクがあるとします。
<a href="#" id="signinlink">Sign in</a>
jquery関数は次のとおりです。
<script type="text/javascript" charset="utf-8">
jQuery(function() {
function launch() {
jQuery('#sign_up').lightbox_me({centered: true, onLoad: function() { jQuery('#sign_up').find('input:first').focus()}});
}
jQuery('#signinlink').click(function(e) {
jQuery("#sign_up").lightbox_me({centered: true, onLoad: function() {
jQuery("#sign_up").find("input:first").focus();
}
});
});
</script>
iframe からこの関数を呼び出す方法は?
(* iframe は親ページ "index.php" から呼び出されます) リンクを追加する必要があると思います
window.parent.callme();
しかし、どのように?助けてください!