javascript - Insert and select parameters in a page -


i have web page insert text box , select box. when complete form, press button send me page. code this:

<form id="login-form"> <input id="user-name" type="text" maxlength="30" name="user[name]" placeholder="enter username" autofocus="autofocus"/> <select id="meeting-id" name="meeting[id]">   <% _.each(meetings, function(meeting) { %>     <option value='<%= meeting.get("meetingid") %>'>       <%= meeting.get("meetingname") %>     </option>   <% }); %> </select> 

is possible skip page url insert these parameters? how can do?

edit: want know if can obtain url pass these parameters instead insert parameters in form. possible.

for example http://www.submit.com/username="prove"&meeting="yes"


Comments

Popular posts from this blog

c# - How to get the current UAC mode -

postgresql - Lazarus + Postgres: incomplete startup packet -

javascript - Ajax jqXHR.status==0 fix error -