[SOLVED!]
I replaced this piece of code:
$('#jqxMenu a').click(function () {
$('#container').load(this.href + ' #container');
return false;
});
with this:
$('#jqxMenu').bind('itemclick', function (event) {
var element = event.target;
$('#container').load(element + ' #container');
return false;
});