In jQuery when using .html
as in:
$(‘#notify’).html(‘Want to get notified of single woman living near you?’).slideDown();
The jQuery just shows what appears there in the jQuery inside .HTML() and nothing else, but if you instead put:
(“#notify”).slideDown();
It shows everything inside the div id #notify
I expected to show both, but just show what appears inside the jQuery code .html
.