Please advise me as to how to hide the page title (shown in the attached screenshot as SendManualEmail) using Jquery. I have tried the following with no sucess.
<style>body div.ms-dlgBorder div.ms-dlgTitle
{
display:none;
}
</style>
$( document ).ready(function() {
$('#pageTitle').remove();
document.querySelector("#pageTitle").style.display = 'none';
document.getElementById('dialogTitleSpan').style.visibility = 'hidden';
});
faye fouladi