I need a jQuery horizontal tab pane where clicking on a tab loads an external page in the div, but clicking on it again does not load the page again!

If you see the image, there are 7 tabs Wall, Latest, Discussion, Poll, Club Message, Create. I have opened the CREATE page, now if i click on the POLL i get the POLL page in the div, the Grey rectangle thin div , if i click on the CREATE again i got the CREATE page from the browser, the browser should not fetch it again from the server

i know the question is really messy ! but i need your help guys !!!

http://i.stack.imgur.com/Y2tTx.jpg

=========================================================================

a demo can be seen here http://www.web-shine.in/tabs/

in the demo clicking on TAB 1 [when i clicked] shows page 1 content 11/04/01 12:16:59

clicking on TAB 2 shows page 1 content 11/04/01 12:17:05

clicking again on TAB 1 shows page 1 content 11/04/01 12:17:15 [correct jQuery code should show 11/04/01 12:16:59]

i want that TAB should load the page once, and next time the user clicks on it, it should show the page from browser cache, not from the server !

link|improve this question

We need your HTML, not just image of web page. Your JavaScript needs to be edited, to disable .click() event on current page and reenable it, when other tab is clicked. Without source, we cant help you more. – Deele Mar 31 '11 at 11:13
here is the code/demo, view it web-shine.in/tabs – Sourav Mar 31 '11 at 11:41
I tested your given link, it works correctly. – Deele Mar 31 '11 at 11:44
@Deele -> It works, but not perfectly, i need to load the page once, if the Current time is X, you go to PAGE 1 it shows X, go to page 2 it shows X+Y, going back to PAGE 1 should display the X again, not X+Y+Z ! i dont want to load the page again and again !!! – Sourav Apr 1 '11 at 3:55
No need to put "not answered" in the page title - questions without accepted answers on SO can be identified as such at a glance. (The number of answers counter will be white rather than yellow) – Dan J Apr 1 '11 at 16:40
feedback

5 Answers

up vote 1 down vote accepted

Try something like this:

var cache = {};

function loadTab(tabObj) {
    if(!tabObj || !tabObj.length){ return; }
    $(containerId).fadeOut(100);

    var target = tabObj.attr('href');

    if (cache[target] !== undefined) {
        $(containerId).html(cache[target]);
        $(containerId).slideDown('medium');
        $(containerId).fadeIn('slow');
    } else {
        $(containerId).load(tabObj.attr('href'), function()
        {
            cache[target] = $(containerId).html();
            $(containerId).slideDown('medium');
            $(containerId).fadeIn('slow');
        });
    }
}
link|improve this answer
You saved my work, your code worked exactly the way i wanted thnx :) and thnx to all for replying and helping on this problem !!! – Sourav Apr 2 '11 at 5:26
feedback

Use the one() function.

Ex:

$("#foo").one("click", function() {
  alert("click can only be done once.");
});

UPDATE

If you are trying to cache the Ajax response so that subsequent Ajax requests that match the original Ajax options will return the cached response instead of making a new call then i highly recommend using this excellent jQuery plugin http://plugins.jquery.com/project/ajax-cache-response

link|improve this answer
Wouldn't this show the tab only once?? After the page has been loaded by AJAX, if the function is only executed once, then how will the tab change?? – JCOC611 Apr 2 '11 at 4:05
This will only make the tab clickable once so he can't click to reload again. This has nothing to do with showing or hiding. See example at jsfiddle.net/xM5E7/1 – Hussein Apr 2 '11 at 4:12
Yes I understand that, but I'm just saying that the OP probably wants the tab to be clickable more than once, he just wants the tab page to be cached to save bandwidth...that's my guess...so maybe apply another click handler in the .one() function? – JCOC611 Apr 2 '11 at 4:16
1  
That doesn't make too much sense. What would be the purpose of clicking the tab again if it isn't used for loading content. – Hussein Apr 2 '11 at 4:18
"want that TAB should load the page once, and next time the user clicks on it, it should show the page from browser cache, not from the server !" idk if that makes sense (from OP) – JCOC611 Apr 2 '11 at 4:20
show 1 more comment
feedback

All you need to do is put this sample inside an AJAX call:

http://jqueryui.com/demos/tabs/#manipulation

link|improve this answer
have you checked the demo ? – Sourav Apr 1 '11 at 3:56
1  
Please elaborate on this by summarizing the linked text in the context of the question. If the link changes or breaks, this answer has no context or value. – Tim Post Apr 1 '11 at 9:08
feedback

I'm sorry if i got it wrong but;

$('#tabs').tabs({cache: true});

It's enough.

link|improve this answer
feedback

Try making your AJAX call in the "show" event of the tabs. This should only fire, when a tab is shown (i.e. when the selected tab changes).

http://docs.jquery.com/UI/Tabs#event-show

link|improve this answer
please see the demo -> web-shine.in/tabs – Sourav Mar 31 '11 at 11:42
have you checked the demo ? – Sourav Apr 1 '11 at 3:56
Okay, I get it now. How about setting a global variable "isLoaded", which is false on init. When a user clicks a tab ("show" event), you check whether the var is false. If it is false, you load the content of all tabs and set the var to true. – Chris Apr 1 '11 at 6:49
i need code :(, i am not good in jQuery ! – Sourav Apr 1 '11 at 7:05
feedback

Your Answer

 
or
required, but never shown

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