Home Fancy style test reloaded
Post
Cancel

Fancy style test reloaded

Let’s try some fancy stuff

<input id="id_price" type="number" min=0 onkeypress="return isNumber(event)"/>
<script type="text/javascript">
function isNumber(evt) {
    evt = (evt) ? evt : window.event;
    var charCode = (evt.which) ? evt.which : evt.keyCode;
    if (charCode > 31 && (charCode < 48 || charCode > 57)) {
        return false;
    }
    return true;
}
</script>

and

  • -r //recursive Download
  • --no-parent // Dont download something from the parent directory
This post is licensed under CC BY 4.0 by the author.