Full Form: Asynchronous JavaScript and XML. Ajax uses web technologies on the client-side to create asynchronous web applications. With Ajax, web applications can send and … What is AJAX and it’s full formRead more
javascript
Posted inAll / Javascript
Submit a form without submit button
document.formname.submit(); //It will work when we are using single form in a page document.forms[‘formname’].submit(); //It will work when we are using multiple forms // above … Submit a form without submit buttonRead more