I would like to change the background position of one link when another link is clicked. I want this to change:
<a class="fast btn-slide" href="#"></a>
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.
Add an onclick event handler to the link and change/add a predefined class to the link
<a class="fast btn-slide" href="#" onclick="this.className += ' ThirdClassName'"></a>
This adds a class behind the others that are currently defined