Home > OS >  Show alert if style is not supported, without HTML
Show alert if style is not supported, without HTML

Time:05-11

I would need something like this:

if {
  @supports not(display: grid) {
    window.alert("Please use a different browser.");
  }
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

So if CSS grid is not supported by a browser, it should show a JavaScript alert. I know how it would work with just CSS, but I need a JavaScript or jQuery solution, without any HTML in the HTML section. How is it possible to do that?

CodePudding user response:

You're making this too complicated

  • Related