admin管理员组文章数量:1344210
How can I detect whether JavaScript is disabled using the prototype library? I don't want to use the <noscript>
tag; I want to use something that prototype offers.
How can I detect whether JavaScript is disabled using the prototype library? I don't want to use the <noscript>
tag; I want to use something that prototype offers.
- ok guys thx...say i want to display some text when javascript is disabled is there any alternatate tag beside <noscript> – kjkjl Commented Jan 27, 2010 at 21:58
- Why don't you want to use <noscript>? That's what it's for. – Duncan Commented Jan 27, 2010 at 22:48
7 Answers
Reset to default 9It would be pretty hard to use javascript to detect if javascript is disabled.
To answer your subquestion, if you want to emulate <noscript>
tag behavior without using noscript, make a <div>
element with the content you want to show to non-javascript users, and then hide it with javascript on DOMReady event. It will do exactly the same thing as a noscript tag.
<script type="Text/JavaScript">
document.observe("dom:loaded", function() {
$('simulate_noscript').hide();
});
</script>
<div id="simulate_noscript">
This is some content only users with JS disabled will see.
</div>
Since Prototype is JavaScript, you cannot use it to detect whether Javascript is disabled or not. You have to use the <noscript>
tag.
You can't detect that javascript is disabled using javascript. Google graceful degradation, and also progressive enhancement.
You can't use JavaScript to determine if JavaScript is enabled; if it's not, then the script will never run. Instead, look to inject behaviours which require script using scripts themselves. This is a core principle of progressive enhancement.
Ummm if Javascript is disabled Prototype is never going to run my friend.
Prototype is a JavaScript framework. If JavaScript is disabled, Prototype will not run, making a JavaScript enabled check useless.
You will need to use a <noscript>
tag to handle situations where JavaScript is disabled.
Just thought I'd add to the myriad of ments already that question how you are to use javascript with javascript disabled. Make sure it degrades well of course.
本文标签: htmlHow can I detect whether JavaScript is disabled using prototypeStack Overflow
版权声明:本文标题:html - How can I detect whether JavaScript is disabled using prototype? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743745775a2531728.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论