Web / HTML Interview questions
1. When does a body onLoad gets called/executed?
The load event fires at the end of the document loading process. At this point, all of the objects in the document are in the DOM, and all the images and sub-frames have finished loading.
2. How will you disable all the html elements within a HTML Table?
$(' #tableID').find('select,input,textarea').attr('disabled','disabled');
3. Difference between <div> and <span> element.
4. How will you enable all the html elements within an html table?
$(' #tableID').find('select,input,textarea').removeAttr('disabled');
5. How to display < and > using html without transforming it to & and >?
6. How do I invert/transpose the rows and columns of a HTML table?
Save the below content into a file with .html extension and open it in browser.
Recently added questions
What is parameter binding in MyBatis? How do you integrate MyBatis with Spring Boot? What is a SqlSessionFactory in MyBatis? How do you write a basic SELECT statement in MyBatis? What is the difference between #{} and ${} in MyBatis? What is MyBatis-Spring? What is MyBatis? What is the difference between MyBatis and Hibernate? What is a Mapper interface in MyBatis? What is a Mapper XML file? What is result mapping? What are the supported statement types in MyBatis? What is a resultMap? How do you configure a data source in MyBatis? What is the mybatis-config.xml file used for? Explain how pagination is typically implemented in MyBatis? What is the purpose of MyBatis? What are the key features of MyBatis? What is a SqlSession in MyBatis? What is dynamic SQL in MyBatis?|
Interviews Questions |
About Javapedia.net Javapedia.net is for Java and J2EE developers, technologist and college students who prepare of interview. Also this site includes many practical examples. This site is developed using J2EE technologies by Steve Antony, a senior Developer/lead at one of the logistics based company. |
||
| contact: javatutorials2016[at]gmail[dot]com | |||
| Kindly consider donating for maintaining this website. Thanks. |
|||
|
Copyright © 2026, javapedia.net, all rights reserved. Privacy Policy · Terms of Service. |
|||