0

$('input[type="text"]').each(function(i){
    old_val = $(this).val();
    new_val = decodeURIComponent(old_val);
    $(this).val(new_val);
});

admin Asked question November 13, 2020
Add a Comment