i have a form and need to send values of textboxes to php side.
I always put my variable’s value to a hidden and then send it to php side. I think this is foolish. Is there a way to send textbox values like that
$.post("adasda", {"degisken1":$("#txtEmail").val()} ,function(response){})
Yes, you can send the textbox values through jquery ajax , post or get method. Below is a sample example
Details see here http://api.jquery.com/jQuery.post/
Thanks