
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 8591 Articles for Front End Technology

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

152 Views
Use the kind attribute in HTML to specify the kind of text track in HTML. For example, you can set the kind as subtitles for subtitle files.ExampleYou can try to run the following code to implement the kind attribute − Your browser does not support the video element.

137 Views
When a user copies the content of an element, the oncopy event takes place.When a user copies an element, such as an image made using the element, the oncopy event also takes place.The elements with type="text" are the ones that often use the oncopy event. Following are the examples… Example In the following example we are running a javascript when copying text of an element. DOCTYPE html> function myFunction() { ... Read More

2K+ Views
For each HTML element, the id attribute specifies a special id. The id attribute's value must be distinct across the HTML content. A specific style declaration in a style sheet is referenced using the id attribute. JavaScript also uses it to access and modify the element with the given id. Following are the examples… Example In the following example we are using pointing to id name ”tutorial”. This will get styled according to the #tutorial. DOCTYPE html> #tutorial { ... Read More

221 Views
A boolean attribute makes up the hidden attribute. It indicates that an element is either not important yet or is no longer relevant when it is present. Elements that have the hidden attribute specified shouldn't be displayed by browsers.Another application of the hidden attribute is to prevent a user from viewing an element until a different requirement has been satisfied. Syntax ……… Following are the examples… Example We are using the hidden attribute to hide the element of the html script that is not relevant. DOCTYPE html> Heading This is ... Read More

396 Views
The dblclick event is triggered when a pointing device button, such as the mouse's main button, is double-clicked, or when it is quickly clicked twice on the same element in a brief period of time. Following are the examples… Example: Using ondblclick attribute in HTML In the following example we are using ondblclick attribute for creating the double click event using HTML. DOCTYPE html> HELLO EVERYONE :):) Double Click the text "HELLO EVERYONE" to see the effect. ... Read More