あなたのコメントに基づいて、ユーザーがページ上のボタン/要素を手動でクリックした場合にのみ、 SignIn プラグインを表示したいようです。jQueryを使用すると、次のように動作するはずです。
ページには、次のボタンがあります。
<div id="buttonControl">
<input type="button" id="showLinkedIn" value="Show LinkedIn" onclick="showLinkedIn();" />
</div>
<div id="buttonContent" style="display: none;"></div>
<head>
ページのスクリプト ブロックには、次のshowLinkedIn()
onclick
関数があります。
function showLinkedIn() {
// insert the SignIn plugin
$('#buttonContent').html('<script type="IN/Login" data-onauth="loadData"><\/script>');
// tell the LinkedIn JavaScript code to re-parse the element containing the SignIn plugin
IN.parse($('#buttonContent')[0]);
// hide button trigger, if needed
$('#buttonControl').hide();
// show the LinkedIn control
$('#buttonContent').show();
}