I have the following code :
<ul id="rubrique_1" class="questionZone ui-sortable">
Rubrique par défaut
<li id="question_1" class="questionStyle">(Q) Matrice case a coché</li></ul>
How can I get the HTML "Rubrique par défaut" without all the HTML of the li div with jQuery? I don't want to put div for the text because I'm using sortable function on ul rubrique_1.
$('#rubrique_1").text()
gives me all the HTML.