Right now, I have
$(document).ready(function(){
$(".follow-button").click(function(){
alert("asdf");
}
});
<button class="follow-button" align="right" align="center">
Follow
</button>
But when I click the button, nothing happens. What am I doing wrong?
You missed a closing parenthesis and semi-colon following the
click: