×
Home
Jobs
Tools
Coding Ground
Current Affairs
UPSC Notes
Online Tutors
Whiteboard
Net Meeting
Tutorix
Login
Packages
Categories
Java
JSP
iOS
HTML
Android
Python
C Programming
C++ Programming
C#
PHP
CSS
Javascript
jQuery
SAP
SAP HANA
Data Structure
RDBMS
MySQL
Mathematics
8085 Microprocessor
Operating System
Digital Electronics
Analysis of Algorithms
Mobile Development
Front End
Web Development
Selenium
MongoDB
Computer Network
General Topics
Library
Videos
Q/A
eBooks
Login
Library
Videos
eBooks
Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
Ankitha Reddy
has Published
102
Answers
How do we specify whether a header cell is a header for a column, row, or group of columns or rows in HTML?
HTML
Web Development
Front End Technology
Ankitha Reddy
Published on 14-Mar-2018 14:57:30
Use the scope attribute to implement whether a header cell is a header for a column, row, or group of columns or rows in HTML − Example Live Demo <!DOCTYPE html> <html> <head> <style> ...
Read More
Execute a script when an error occurs in HTML?
HTML
Web Development
Front End Technology
Ankitha Reddy
Published on 14-Mar-2018 14:20:02
The onerror event triggers when an error occurs in HTML. You can try to run the following code to implement onerror event attribute − Example Live Demo <!DOCTYPE html> <html> <body> <img src = "new.png" onerror = "display()"> ...
Read More
How to store custom data private to the page or application in HTML?
HTML
Web Development
Front End Technology
Ankitha Reddy
Published on 14-Mar-2018 12:04:42
Use the data-* attribute in HTML to store custom data private to the page in HTML. It consists of the attribute, which should not contain any uppercase letter and should gets prefixed after data. You can try to run the following code to implement the data-* attribute − Example ...
Read More
Execute a script when a Web Storage area is updated in HTML?
HTML
Web Development
Front End Technology
Ankitha Reddy
Published on 14-Mar-2018 10:39:11
Use the onstorage attribute in HTML to execute on Web Storage area update. You can try to run the following code to implement onstorage attribute − Example <!doctype html> <html> <head><title>HTML onstorage</title> </head> <body> ...
Read More
How to specify the usage of an element using the tabbing order (tab keyboard button) in HTML?
HTML
Web Development
Front End Technology
Ankitha Reddy
Published on 13-Mar-2018 17:25:03
Use the tabindex attribute in HTML to set the tabbing order of an element. It gives you the authority to change the order of your TAB usage on the keyboard. You can try to run the following code to create tabbing order of an element in HTML − Example ...
Read More
How to specify that an <input> element should be pre-selected when the page loads in HTML?
HTML
Web Development
Front End Technology
Ankitha Reddy
Published on 13-Mar-2018 16:26:49
Use the checked attribute to specify an <input> element is to be pre-selected on page load. The attribute works with −<input type = "checkbox"> <input type = "radio">.ExampleYou can try to run the following code to implement checked attribute in HTML − Live Demo<!DOCTYPE html> <html> <body> ...
Read More
How to display a short quotation in HTML?
HTML
Web Development
Front End Technology
Ankitha Reddy
Published on 13-Mar-2018 12:57:38
The HTML <q> tag is used for indicating short quotations (i.e. quotations that span multiple lines). The HTML <q> tag also supports the following additional attributes −AttributeValueDescriptionciteURLURL of the quote, if it is taken from the web.ExampleYou can try to run the following code to implement <q> tag in HTML ...
Read More
Create self-contained content in HTML5
HTML
Web Development
Front End Technology
Ankitha Reddy
Published on 13-Mar-2018 11:36:08
Use the <figure> tag to create self-contained content. You can try to run the following code to implement <figure> tag in HTML5 − Example Live Demo <!DOCTYPE html> <html> <head> <title>HTML figure Tag</title> </head> ...
Read More
How to use sockets in JavaScript\HTML?
HTML
Front End Technology
Web Development
Ankitha Reddy
Published on 01-Mar-2018 10:57:23
To use sockets, consider the WebSocket interface in JavaScript. This interface enables web applications to maintain bidirectional communications with server-side processes. To enable Web applications to maintain bidirectional communications with server-side processes, this specification introduces the WebSocket interface. Here are some of the methods to workaround with Web Sockets − ...
Read More
Why should we avoid using global variables in C/C++?
C++
Server Side Programming
Programming
Ankitha Reddy
Published on 28-Feb-2018 14:45:30
We should avoid using global variables in any language, not only C++. This is because these variables pollute the global namespace, can cause some very nasty bugs in big projects as they can be accessed from any file and hence be modified from anywhere. These are some of the reasons ...
Read More
Previous
1
2
3
4
5
6
7
...
11
Next
Advertisements
Print
Add Notes
Bookmark this page
Report Error
Suggestions
Save
Close
Dashboard
Logout