﻿
function RemoveLabels() {
    $(".noLabels .formRow").each(function () {
        $(this).find("label").hide();
        $(this).find(".TextBoxField").attr("placeholder", $(this).find("label:first-child").html());
    });
}

