I want a button that says, “Send a private message”. And when that button is clicked, a list of friends drops down.
I don’t want to use heavy JQuery menu plugins, because they’re too heavy and are made for navigation.
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.
I would suggest simply using a hidden
divelement, which you populate with the required data either in the click event handler on the button, or when the page loads. You can then use the standard jQuery functions such asslideDownorshowto make thedivvisible:That way, you don’t need to include any JavaScript library files except the base jQuery file.