Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.
add_action('wp_footer', function() {
?>
jQuery(document).ready(function($) {
// നിങ്ങളുടെ ഫീൽഡ് ഐഡി ഇവിടെയും കൃത്യമായി നൽകുക (wpforms[fields][ID])
var fieldID = 1;
var fieldSelector = 'input[name="wpforms[fields][' + fieldID + ']"]';
$(document).on('input', fieldSelector, function() {
var val = $(this).val().replace(/[^0-9]/g, ''); // നമ്പറുകൾ മാത്രം അനുവദിക്കുന്നു
if (val.length > 10) {
val = val.substring(0, 10); // 10 അക്കത്തിൽ കൂടുതൽ മുറിച്ചു മാറ്റുന്നു
}
$(this).val(val);
});
});
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.