jquery
$(selector).on('click',function(){
var $myvar = 'hi';
});
alert($myvar); // this won't alert hi as this is out of click function
関数の外で $myvar を呼び出すにはどうすればよいですか?
アップデート
以下の回答を試しましたが、動作していないようですhttp://jsfiddle.net/G5vAv/1/
アラート時に値「hi」を返したいと思います。何か案が?