SyntaxFix
Write A Post
Hire A Developer
Questions
You may use the contain selector:
[name*=”value”]: selects elements that have the specified attribute with a value containing a given substring.
$( document ).on( "keyup", "input[name*='pages_title']", function() { alert($(this).val()); });