Skip to content

Instantly share code, notes, and snippets.

@normanzb
Last active August 27, 2015 15:33
Show Gist options
  • Save normanzb/c12f6c76966bb27d4ed8 to your computer and use it in GitHub Desktop.
Save normanzb/c12f6c76966bb27d4ed8 to your computer and use it in GitHub Desktop.
$(function() {
var $firstNameField = $("#first_name");
var $target = $(".txt-parabens");
var $message = $("<p class='lead-name' style='text-align: center;'></p>");
$firstNameField.on('change', function() {
var inputValue = $firstNameField.val();
if (inputValue == null || inputValue == false) {
// hide the text
$message.detach();
}
else {
$message.text(inputValue);
$message.appendTo($target);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment