I want to create a Link that, if you click on it, calls a simulates a Key combination like CTRL+/ or CRTL+-.
thank you
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 may want to look here for a similar effect:
jQuery: How to catch keydown + mouse click event?
However, if you are meaning that a user is to press:
Ctrl,/, andclickat the same time, that may be more difficult. You also should consider if there is a simpler key combination for you to choose for the user’s sake.Edit:
I think I may have misunderstood what you are looking for, can you clean up the wording of your question?
I now think that you are meaning to simulate the keypress when a user clicks the link. If you are intending to use this to change the “zoom” or the text size on the page (ie: larger / smaller buttons), you should consider using em for text-sizes and then changing the top level font-size with css on the click.
This would allow you to provide the same functionality, but isn’t a hackish way to get there.
Edit 2:
Here’s what you’re looking for: Simulate Keypress With jQuery