Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9259727
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T12:43:27+00:00 2026-06-18T12:43:27+00:00

what im doing is when i click a link, it will trigger an keypress.

  • 0

what im doing is when i click a link, it will trigger an keypress.
For example, when I click a link, it will actually do ctrl + = which is keycode 17 and 187 together. I have try but no luck,unsuccessful.

var press = jQuery.Event("keydown");
press.ctrlKey = true;
press.which = 187;
$("#resize").click(function(e){
    e.trigger(press);
    e.preventDefault();
});

or anyone have a better way to do this ??

thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T12:43:29+00:00Added an answer on June 18, 2026 at 12:43 pm

    Triggering an event on an event will never work 😉 Use a selector instead:

    var press = jQuery.Event("keydown");
    press.ctrlKey = true;
    press.which = 187;
    $("#resize").click(function(e){
        $(document).trigger(press);
        e.preventDefault();
    });
    

    demo

    Update

    Since the questioner has become a bit more precise. I’ve made this demo

    This would be enough for his needs: demo

    var i = 1;
    $("#resize").click(function(e){
        $(document.body).css({transform: 'scale(' + (i += 0.1) + ')'});
        // or without css3, maybe:
        // $(document.body).css({zoom: i += 0.1});
        e.preventDefault();
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here an example of my code, which when user click a link then it
I'm doing a bind to document like below, $(document).bind('click',doThis); But i have a text
I have a parent jsp called p1.jsp . When i click on a link
I might be doing something stupid. But if I have a normal link like:
I have a complicated question, so I will try and keep it as short
When you click on this link, you can see that the stack overflow will
HTML I am adding my two links which will send my 'Unanswered' link to
Is there any difference between doing this: $(.topHorzNavLink).click(function() { var theHoverContainer = $(#hoverContainer); var
When I click the button, alerts aren't performed. What am I doing wrong? Maybe
All I am doing is finish of a wizard. On click of this, I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.