Noscript Tag, JavaScript Disabled Warning and Google Penalty

前端 未结 6 1169

I have been using a noscript tag to show a warning when users have JavaScript disabled or are using script blocking plugins like Noscript. The website will not function prop

6条回答
  •  隐瞒了意图╮
    2020-12-02 10:57

    I don't think using

    A better method IMO, is to have all would-be 'noscript' content hidden by JavaScript.

    Here's a very basic example:

    ...
    
    
        
    
        
    Welcome... here's some content...

    And within your StyleSheet:

    body.js-enabled #noscript { display: none; }
    

    More info:

    • Replacing
    • Reasons to avoid NOSCRIPT

提交回复
热议问题