Difference between revisions of "Noscript (HTML element)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(Created page with "In HTML, the '''X''' element represents nothing if scripting is enabled, and represents its children if scripting is disabled. == Description == The noscri...")
 
 
Line 1: Line 1:
In [[HTML element|HTML]], the '''X''' element represents nothing if scripting is enabled, and represents its children if scripting is disabled.
+
In [[HTML element|HTML]], the '''noscript''' element represents nothing if scripting is enabled, and represents its children if scripting is disabled.
  
 
== Description ==
 
== Description ==
  
The noscript element is used to present different markup to user agents that don’t support scripting
+
The noscript element is used to present different markup to [[user agents]] that don’t support scripting.
  
 
The noscript element is only effective in the [[HTML]] syntax. It has no effect in the [[XHTML]] syntax.
 
The noscript element is only effective in the [[HTML]] syntax. It has no effect in the [[XHTML]] syntax.

Latest revision as of 06:31, 2 May 2016

In HTML, the noscript element represents nothing if scripting is enabled, and represents its children if scripting is disabled.

Description

The noscript element is used to present different markup to user agents that don’t support scripting.

The noscript element is only effective in the HTML syntax. It has no effect in the XHTML syntax.

Examples

<noscript>
 <p>Your browser does not support scripts.</p>
</noscript>

See also

External links