/* ---------- js ---------- */ jQuery(function ($) { $(function () { $(".formmail_title_bgcolor").each(function () { var placeholder_text = $(this).find("font").text(); $(this).parent("tr").find(".formmail_cell_bgcolor input:first-of-type").attr("placeholder", placeholder_text); $(this).parent("tr").find(".formmail_cell_bgcolor textarea:first-of-type").attr("placeholder", placeholder_text); }); }); });