jQuery/Javascript event not triggering on <a> tag -


i having issue event triggering on <a> tag. alert doesn't show when clicked.

$('.thb-audio-wrapper #fap-play-pause').on("click",function(){ alert('hello'); }); 

try using this:

$('.thb-audio-wrapper').on("click", '#fap-play-pause' ,function(){ alert('hello'); }); 

Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -