<script>
$(document).ready(function(){
function isEmpty( el ){
return !$.trim(el.html())
}
if (isEmpty($('#showvacnt'))) {
$('#showvacnt').append("TEXT GOES HERE.");
}
});
</script>
$(document).ready(function(){
function isEmpty( el ){
return !$.trim(el.html())
}
if (isEmpty($('#showvacnt'))) {
$('#showvacnt').append("TEXT GOES HERE.");
}
});
</script>