I have reshaped two links to small round buttons, however for some reason I am not able to catch their click-events with any of the approaches that you can see in this code
Any help would be really useful.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You made several mistakes in your JS code.
1 – You forgot a
$and a.:Instead of:
you should have:
2 – Also, replace:
with:
Then, it should work.
Note: It is very useful to check your console for tracking JS errors. You can try Firebug if you haven’t discovered it yet! (I love Firebug! 😛 XD )