I managed including the jqt.bars extension on my webApp. But I cant get it to work on the pages loaded with ajax. So far I tryed the following.

I changed

 $(document).ready(function() {
$("#admin li.arrow a, #kauf #adminAll, #tech #techAll, #dienst #dienstAll, #verkauf li.arrow a, #verkauf li.arrow a, #finanz li.arrow a, #informatik li.arrow a, #masch li.arrow a, #bau li.arrow a, #gewerbe li.arrow a, #med li.arrow a, #lebensmittel li.arrow a").click(function() {
  var linkId = $(this).attr("id");
  //alert(linkId);
  $('#liste').empty(); 
  $.ajax({
    type: "GET",
    //cache: "false",
    url: "listJobs.php",
    data: "ajaxget=" + linkId,
    success: function(data) {
      $("#liste").html(data);
    }
  });
});});

to

$(document).ready(function() {
$("#admin li.arrow a, #kauf #adminAll, #tech #techAll, #dienst #dienstAll, #verkauf li.arrow a, #verkauf li.arrow a, #finanz li.arrow a, #informatik li.arrow a, #masch li.arrow a, #bau li.arrow a, #gewerbe li.arrow a, #med li.arrow a, #lebensmittel li.arrow a").click(function() {
  var linkId = $(this).attr("id");
  //alert(linkId);
  $('#liste').empty(); 
  $.ajax({
    type: "GET",
    //cache: "false",
    url: "listJobs.php",
    data: "ajaxget=" + linkId,
    success: function(html) {
      $("#liste").append(html);
      jQT.goTo('#listeDetail', 'slide');
    }
  });
});

});

and added $("body").trigger("pageInserted", {page: $("#listeDetail")});

But by doing that the scrolling does not work and every other button like home-Button is not working anymore.

Can anyone give me advice on how to handle this? Thank you so much.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.