tags:

views:

24

answers:

1

I am trying to convert a jqtouch app that was developed for me to jquery mobile.

I don't know how I should be converting this code

showMainMenu: function() {
        Inventory.loadDealers();
        Inventory.enableMenu(false);
        jQT.goTo('#mainmenu');
    },

I tried

showMainMenu: function() {
        Inventory.loadDealers();
        Inventory.enableMenu(false);
        $('#mainmenu').slideUp('slow', function() {});

    },