I wanted to do the same on my site and noticed that it doesn't work on Chrome, and it looks like for Stack Overflow either.

link|improve this question

1  
What exactly did you want to do? – Gnoupi May 7 '10 at 8:26
on SO when you disable javascript in your browser you get an message on the top, saying that the site works best with js enabled, but on google chrome it doesnt – Omu May 7 '10 at 8:44
found a solution stackoverflow.com/questions/2787177/… – Omu May 7 '10 at 8:48
feedback

2 Answers

up vote 4 down vote accepted

Oddly enough this seems to be a "feature" of Chrome, as Omu pointed out

http://stackoverflow.com/questions/2787177/noscript-stuff-noscript-doesnt-work-on-google-chrome

edit: Fixed in Chrome 5.

link|improve this answer
feedback

Don't worry, webkit fixing that like this :-)

if (m_parentFrame->script()->canExecuteScripts(NotAboutToExecuteScript)) 

to

if (!m_parentFrame->script()->canExecuteScripts(NotAboutToExecuteScript)) 
link|improve this answer
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged