It is currently Sat Dec 02, 2017 4:06 pm Advanced search
desbest wrote: * s can't i strikethrough text?
* u how else am i meant to underline text[/b]
<span style="text-decoration: underline line-through;">test</span>
anne wrote:Though checking if JavaScript is enabled can be done by simply checking if the script is executed or not.
<script type="text/javascript">alert("hello world");</script>
<noscript>you should really enable JavaScript</noscript>
Le Sage wrote:Do you mean there is a way of doing this without noscript?
- Code: Select all
<script type="text/javascript">alert("hello world");</script>
<noscript>you should really enable JavaScript</noscript>
<p id=noscript>you should really enable JavaScript</p>
<script>
var e = document.getElementById('noscript');
e.parentNode.removeChild(e);
alert("hello world");
</script>
anne wrote:What problem is solved by having these elements?
anne wrote:I don't think we should constrain the language to what IE6 currently supports as that will change over time.
anne wrote:Frames have all kinds of usability issues. Not being able to bookmark, etc.
OmegaJunior wrote:anne wrote:Frames have all kinds of usability issues. Not being able to bookmark, etc.
That is a problem of the browser, not of the author. Bookmarking, since you mention it, is possible for frames in Opera and Firefox, last time I checked.
OmegaJunior wrote:Frames, for instance, allow for separation and reuse of content without requiring script, either client-side or server-side.
position: fixed;
Return to Feedback on the Specs
Users browsing this forum: No registered users and 1 guest