$('#listLeft ul li a').live("click", function() { // alert("foo"); // e.preventDefault(); if ($(this).hasClass("listLeftSelected")) { return false; } $('.listLeftSelected').removeClass("listLeftSelected"); $(this).addClass('listLeftSelected'); var objId = $(this).attr("data-id"); var tabId = $('.innerSelected').attr("data-id"); $.getJSON("/m/get_details", { 'tab_id': tabId, 'object_id': objId }, function(data) { $('#textRight').text(data.title); $('#bottomRight').html(data.html); // console.log(data); }); return false; }); /* Get a jquery