-1

I'm using HTML5 feature "download".

How to check browser support HTML5 this feature?

AC1D
  • 248
  • 5
  • 16

1 Answers1

0

I found Modernizr

<script type="text/javascript">
    if (Modernizr.adownload ) {
    alert("This browser supports HTML5 download!");
    }
</script>

But if have better solutions, please offer

AC1D
  • 248
  • 5
  • 16