Announcement

Collapse
No announcement yet.

Can I submit page value without any submit button?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Can I submit page value without any submit button?

    Hi guys,
    Can I submit page value without any submit button?

  • #2
    Hello Gabrel,

    If you want to post it server side use PHP Curl, otherwise you can use jquery to posting client side.

    Comment


    • #3
      I would suggest you to use jQuery

      With Jquery:

      $( "#linkid" ).click(function() {
      $( "#formid" ).submit();
      });

      Comment

      Working...
      X