Ich möchte mit Jquery prüfen, ob mein Absatz-Tag leer ist. Das heißt, ohne Inhalt.
$(function() {
$("#popupdialog").dialog();
});
HTML
<div id="popupdialog">
<p></p> </div>
Getrennte Zeitpunkte.
<div id="popupdialog" title="Basic dialog">
<p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
Wenn der Popupdialog ohne Inhalt ist. Ich möchte, dass das Dialogfeld auf autoOpen: false gesetzt wird. Wie sollte ich das machen?