Jump to content

Submit GET form using javascript?


resting

Recommended Posts

I have this problem.

 

The user selects the size from a drop down menu.

 

On submit, the value for size is get by javascript:

 

var size = document.getElementById('size').value
var url   = "cart.php?category=" + category + "&id=" + id + "&size=" + size;

 

i want the form to submit with the 3 variables (category, id and size). I could generate the url with javascript and redirect with windows.location. But is it possible to submit with the GET method instead?

 

I have to include the full url when I submit from javascript right? That will make the script difficult to move to another location.

Link to comment
https://forums.phpfreaks.com/topic/177301-submit-get-form-using-javascript/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.