jQWidgets Forums

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: Menu ignores AJAX Menu ignores AJAX #79425

    sourvinos
    Participant

    [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;
    });
    
Viewing 1 post (of 1 total)