Hypertext Markup Language is the standard markup language for creating web pages and web applications. With Cascading Style Sheets and JavaScript, it forms a triad of cornerstone technologies for the World Wide Web.
Hi, below is a code snippet , which contains datatype to read form data and send it to server:
$.ajax({ url: ‘/YourServiceUrlHere’,
type: ‘POST’,
timeout: 12000,
dataType: ‘text’,
data: { firstName: YourForm.fname.value,
lastName: myForm.lname.value }
).done(…
)
Hi, below is a code snippet , which contains datatype to read form data and send it to server:
$.ajax({ url: ‘/YourServiceUrlHere’,
type: ‘POST’,
timeout: 12000,
dataType: ‘text’,
data: { firstName: YourForm.fname.value,
lastName: myForm.lname.value }
).done(…
)