Я хочу изменить текст заполнителя. Я кое-как меняю его на jQuery. После запуска кода мой новый заполнитель - «введите адрес электронной почты получателя». Но теперь я хочу изменить текст заполнителя на «Электронный адрес получателя». Я обновил код. Но заполнитель показывает старый текст «введите адрес электронной почты получателя». Не знаю почему.
jQuery(document).ready(function($) {
$('#pwgc-to').attr("placeholder", "enter receiver’s email").val("").focus().blur();
})
В функцию был добавлен следующий код: php
add_action( 'wp_enqueue_scripts', 'add_my_script' );
function add_my_script() {
wp_enqueue_script(
'change-placeholder', // name your script so that you can attach other scripts and de-register, etc.
get_stylesheet_directory_uri() . '/js/change-placeholder.js', // this is the location of your script file
array('jquery') // this array lists the scripts upon which your script depends
);
}