Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen gezeigt.
|
javascript:noscript-else [2013/07/15 18:39] nosch angelegt |
javascript:noscript-else [2013/07/15 18:42] (aktuell) nosch |
||
|---|---|---|---|
| Zeile 1: | Zeile 1: | ||
| - | <html> | + | [[javascript|JavaScript]]\\ |
| + | ====== if-else-Logik für NOSCRIPT ====== | ||
| + | <code html> | ||
| <head> | <head> | ||
| - | <noscript><style> .jsonly { display: none } </style></noscript> | + | <noscript><style> .jsonly {display: none;} </style></noscript> |
| </head> | </head> | ||
| <body> | <body> | ||
| - | <p class="jsonly">You are a JavaScript User!</p> | + | <p class="jsonly">JavaScript ist eingeschaltet!</p> |
| </body> | </body> | ||
| - | </html> | + | </code> |