|
|
-
|
|
"datagrid" tag creates a table that is built from a database or other dynamic source. Now this tag has been removed from HTML 5 specifications....
|
|
-
|
|
Often few users will disable javascript in browser. If your website is too dependent on javascript, you might want to display a message to users that "javascript is not supported".
HTML 5 provides "NoScript" tag, which can be used to detect whether br...
|
|
-
|
|
Before HTML 5, When the web page is loading, if it has any javascripts with src attributes, page parsing will be stopped until it downloads the javascript. This affects loading time of webpage.
Now in HTML5, the scripts marked as async, will not cause...
|
|
-
|
|
In HTML 5, Command tag has been introduced, When a command tag is rendered in webpage, it might render in the form of either "checkbox", or "radiobutton" or " "command button". On clicking of this, defined command will be invoked. This command tag can b...
|
|
-
|
|
In HTML 4, Menu tag has been depreciated, In HTML 5, Menu tag again redefined and became more powerful.
It has following attributes.
1. **type:** By default menu type will be general "list", It can also have other values like "context" and "toolbar"....
|
|
-
|
|
HTML 5 introduced "details" tag, which can be used to show/hide the details. For now, it has been implemented only
in Google Chrome browser. By default the content inside will not be visible. On clicking the arrow, entire content
will be visible. On c...
|
|