Hi guys this is my jQuery part that makes my menu for my pages.
function fetchmenus() { $.getJSON(\'sys/classes/fetch.php?proccess=1\', function(status)
Yes, you can select only the text contents of the element, like this:
var text = ''; $('a').contents().each(function(){ if(this.nodeType === 3){ text += this.wholeText; } }); $("#largemenutop").html(text);