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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T03:08:31+00:00 2026-05-20T03:08:31+00:00

Is there a trick to making this function work? I want the page to

  • 0

Is there a trick to making this function work?

I want the page to be submitted to test.aspx upon button clicking and POST param in the following way:

my html

<a href="javascript:void(0);" onclick="return submittotest();"><span>Click me</span></a>

js

function submittotest() {

     $.post("test.aspx", { param: "paramvalue" });

}
  • 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-20T03:08:32+00:00Added an answer on May 20, 2026 at 3:08 am

    If you want to submit a form, you need to do $('#formid').submit();. What you have above is for an AJAX request. You need to pass a success callback function to the post function if you want to do something with the returned data.

    Example:
    See here

    HTML

    <button id="testbtn">button</button>
    <div id="testdiv"></div>
    

    JavaScript

    $(function() {
        $('#testbtn').click(function() {
            $.post('/echo/html/', //This just echo's the html parameter's value back
                   { html: "Just testing!" },
                   function(text) {
                       $("#testdiv").html(text);
                   });
        });
    });
    

    Edit
    Based on your comments. You can add a hidden input element with the value you want to the form using jquery. Try something like this:

    var yourdatavar = "data you want to post";
    $('<input type="hidden">').val(yourdatavar).appendTo('#formid');
    $('#formid').submit();
    

    Check out this for a working example.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

There's this one thing in C++ which has been making me feel uncomfortable for
So in Ruby there is a trick to specify infinity: 1.0/0 => Infinity I
TFS2008. I'd like to track task points on a Task work item, but there
There is previous little on the google on this subject other than people asking
Suppose I want a function that takes a number and returns it as a
Is there a way to test if a collection is already initialized? try-catch only?
Are there any tricks for preventing SQL Server from entitizing chars like &, <,
Is there any tricky way to use Java reserved words as variable, method, class,
There are a couple of tricks for getting glass support for .Net forms. I
In your practice, how do you effectively track and manage technical debt? Is there

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.