Monday, August 16, 2021

Webform Contact/Phone Number Allowed only numbers not text with below jquery code

 

Using the below code, the text field can be changed to allow only the numbers, use can't enter text only numbers will be allowed.

------------------------------------------------------------------

jQuery( document ).ready(function() {

  jQuery("#field-id-or-class").attr('onkeypress','return isNumberKey(event);');

});

function isNumberKey(evt)

{

  var charCode = (evt.which) ? evt.which : event.keyCode;

 console.log(charCode);

    if (charCode != 46 && charCode != 45 && charCode > 31

    && (charCode < 48 || charCode > 57))

     return false;


  return true;

}

After Web Form Summited Zip file auto download


jQUERY CODE

-------------------------

 jQuery(function() {

jQuery('a[data-auto-download]').each(function(){

var $this = jQuery(this);

setTimeout(function() {

window.location = $this.attr('href');

}, 2000);

});

});

The below HTML code should be placed in the place of success message to make the zip file auto downlaod. 

HTML CODE:

------------------------------

<a class="button" data-auto-download="" href="/download.zip">click here</a>