cara menyembunyikan input dan label jQuery

$('#Id').hide(); // Hide the ID and save display into cache to later be restored
or
$('inputID').css('display', 'none'); // To permenately set the display to none
CodeHelper