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 4233112
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T02:10:47+00:00 2026-05-21T02:10:47+00:00

Suppose you have a link that contains some values: <a href=/action?number_one=1&number_two=4 class=some_link> something </a>

  • 0

Suppose you have a link that contains some values:

<a href="/action?number_one=1&number_two=4" class="some_link"> something </a>

How can you increment number_one and number_two when a user clicks on this link using jQuery?

I know to extract number_one’s value you can use regex:

var number_one = $(this).attr("href").match(/number_one=([0-9]+)/)[1];

How can you then increment it say by 20, so that it now becomes:

<a href="/action?&number_one=21&number_two=24" class="some_link"> something </a>
  • 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-05-21T02:10:48+00:00Added an answer on May 21, 2026 at 2:10 am

    This works in Chrome, at least – the .search attribute is an HTML5 property:

    // get the real link element
    var link = $(this).get(0);
    var fields = {};
    
    // parse and increment number one
    fields.number_one = link.search.match(/number_one=([0-9]+)/)[1];
    fields.number_one += 20;
    
    // do same for number two:
    fields.number_two = link.search.match(/number_two=([0-9]+)/)[1];
    fields.number_two += 20;
    
    // update the link's query parameters
    link.search = $.param(fields);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose, I want to have a link or a button that when user click
Suppose I have <table> <tr> <td><a class='ilink'> link text </a></td> <td></td> <td></td> <tr> <tr>
Suppose on my HTML page I have many href s to a link. Using
Suppose I have a static method of my class that returns an object of
I have the following block of code that creates an Action Link for a
Suppose i have a json object friends as: { title: Friends link: /friends.json description:
Suppose I have the following (desired) folder structure: *CommonProject *Project#1 ----> CommonProject(link) *Project#2 ---->
Suppose I have a pure virtual method in the base interface that returns to
Let's suppose I have the following url: /valid/django/app/path/?foo=bar&spam=eggs I can simulate a request to
On my web page i have some links like : <div id=toolbarButtons> <a href=actualites/addLink

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.