
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 10483 Articles for Web Development

314 Views
When a text selection or draggable element is dropped onto an authorised drop target, the ondrop event is triggered. It is simpler to move an object to a different area by engaging notion of drag and drop. Following are the examples… Example In the following example we are using executing a javascript when the draggable element is dropped in . DOCTYPE HTML> .droptarget { float: left; width: 100px; height: 35px; ... Read More

315 Views
In HTML, user input is obtained via the tag. The min and max properties, which indicate a maximum and minimum value for an input field, are used to limit the input field. Use the maxlength attribute to restrict the number of characters. Syntax Following are the examples… Example In the following example we are using the maxlength attribute with the input type to allow maximum number of elements. DOCTYPE html> style> body { text-align: center; } ... Read More

182 Views
The range in which a gauge's value is regarded as low is specified using the HTML | low property. The low attribute's value must be higher than the "min, " lower than the "max, " and equal to or less than the "high" attribute. Note − This can only be used with tag. Syntax Following are the examples… Example In the following example we are using the low attribute in the tag. DOCTYPE html> MSD score: 5 out of 10 ... Read More

511 Views
The HTML tag is used to add autocomplete functionality to form elements. It offers customers a set of predefined options from which to choose data. A "list" attribute containing "input" element should be used with the "" tag. The datalist id and the value of the "list" attribute are related. Following are the examples… Example In the following example we are using datalist to allow pre defined option for the user. If you press A, it will show a list of cricketers starting with A letter. DOCTYPE html> ... Read More

417 Views
The language of an element's content can be identified using the HTML lang property. Language code, which is used to specify the language of the displayed information, is the only value for this element. Syntax Following are the examples… Example In the following example we are using lang property to specify the language of the element content. DOCTYPE html> English The Best E-Way Learning. french Le ... Read More