I'm trying to mimic a placeholder
behavior, so i try to save the original value on page load. using this code. I'm here cause it's not working. the value is empty.
$().ready(function() {
$("input").prop("placeHolder", $(this).val());
/*
also tried:
$("input").prop("placeHolder", $(this).attr("value"));
*/
}