新しいコードをクリックしてアラートを取得した後、コードを他のコードに置き換えたいのですが、コードでアラートが機能しません。どうすれば修正できますか?
デモ: http://jsfiddle.net/9Ggsn/
HTML:
<select>
<option>select 1</option>
<option>select 2</option>
<option>select 3</option>
</select>
<div class="dfg"><a href="#">Test</a></div>
jQuery:
$('select').on('change', function(){
//alert('ook');
$('.dfg a').replaceWith('<a href="#" class="pon">Link</a>')
});
$('.pon').on('click', 'a', function(){
alert('ook');
});