次のHTMLは、Ajaxを使用してHTMLページのdivに読み込まれます。ユーザーがそのHTML内のa.start-btnをクリックしたときにコードを実行したいのですが、何らかの理由でクリックが検出されないので、試しました。ライブで動作しませんでした。何が間違っている可能性がありますか?ありがとう
<div class="map">
<div class="game-step1">
<div class="note">
<h5>Day 5</h5>
<p>Today is the 5th day of our trip around the world... We have already visited Rome, Istambul, Kenya and Maldives.<br/><br/>
<strong>Ready to guess what will be our next destination?</strong></p>
</div>
<img src="img/route1.png" class="route route1"/>
<a href="#" class="game-button start-btn" >Start the Game »</a>
</div>
</div>
function showReadyMsg() {
$('.game-step1').animate({left:'-886px'}, 500);
console.log('showReadyMsg called')
}
$(".start-btn").live("click", function(){
console.log('button clicked')
showReadyMsg();
});