Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
$(document).ready(function(){

$(function() {
    $('a.ajaxload').click(function(e) {           
      var url = $(this).attr('href');
      $('#desktopcontainer').load(url); // load the html response into a DOM element
      e.preventDefault(); // stop the browser from following the link
    });
});

$(function() {
    $(".accordion .accordion-tabs .tab").each(function(){
        $(this).click(function(){
            if ($(this).hasClass('tab')){
            $(this).removeClass('tab');
            $(this).addClass('active');
          }else{
            $(this).removeClass('active');
                    $(this).addClass('tab');
          }

          $(this).next().slideToggle('slow');
                return false;
        });
    });
});
});

My tab works fine but after I click the "a.ajaxload" to add a content to the page, then my tab doesn't respond anymore.

Can anyone please tell me where the problem is?

SOLVED!!!

What I did was to add the function after my load ... look at the new code below and see the difference. I hope it helps someone.

$(document).ready(function(){

initDashboard();

$(function() {
    $('a.ajaxload').click(function(e) {           
      var url = $(this).attr('href');
      $('#desktopcontainer').load(url); // load the html response into a DOM element
      e.preventDefault(); // stop the browser from following the link
      initDashboard();
    });
});

function initDashboard() {
    $(".accordion .accordion-tabs .tab").each(function(){
        $(this).click(function(){
            if ($(this).hasClass('tab')){
            $(this).removeClass('tab');
            $(this).addClass('active');
          }else{
            $(this).removeClass('active');
                    $(this).addClass('tab');
          }

          $(this).next().slideToggle('slow');
                return false;
        });
    });
}

});
share|improve this question
Thank you, I have done that. – Shina Jun 28 '12 at 9:01
1  
Could you please show us your html code? – Phenix Jun 28 '12 at 11:35
Maybe the click should be also live (note: in jQuery 1.7+ you should use on instead)? What content does it load? Can you post a jsfiddle> – Darhazer Jun 28 '12 at 11:36
1  
@Shina: By the way since you are new here, see: meta.stackoverflow.com/questions/5234/…. You need to accept helping answers to improve your accept rate on this site :) – Blaster Jun 28 '12 at 12:14
@Phenix my HTML are in pages and I am getting them dynamically with the load(url). – Shina Jun 28 '12 at 13:56
show 2 more comments

migrated from webmasters.stackexchange.com Jun 28 '12 at 11:32

1 Answer

You need on() since it is dynamically added (eg inserted via load method):

$('.accordion .accordion-tabs').on('click', '.tab', function(){
   if ($(this).hasClass('tab')) {
        $(this).removeClass('tab');
        $(this).addClass('active');
   }else{
        $(this).removeClass('active');
        $(this).addClass('tab');
   }

   $(this).next().slideToggle('slow');
        return false;    
   });
});

Also no need to use jQuery ready handler three times, just put all your jQuery-related code inside this:

$(document).ready(function(){

});

Docs:

share|improve this answer
The on() doesnt seem to do anything - not even when the user first gets to the page. That was the reason why I'm using live() in the first place. Any reason? – Shina Jun 28 '12 at 13:54
@Shina: It is part of latest jQuery version, try using latest version of it. – Blaster Jun 28 '12 at 13:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.