Jump to content

load content into div


busnut

Recommended Posts

G'day, firstly I apologise if this isn't php related. I'm not entirely sure, but im sure someone will tell me (politely hopefully)...

 

Anyway, i'm using this script from here http://trevordavis.net/blog/tutorial/jquery-tabbed-navigation/, which is all good, however what i'm wanting to do is on one of the tabs, I want a further 'menu' down the side, and depending on the users request, I want the content to load beside it (still in the same tab), but something other than an iframe or something like that.

I had recently seen a script where content can be loaded without the whole page being loaded/refreshed (which i forgot to bookmark), and after trying to google this script, I can't find it, but i'm positive it involved PHP somewhere, and maybe javascript or ajax.

 

If anyone is able to help, that will be appreciated. Also I should note, that the menu where the user can select info from, will have a search box and dropdown boxes of results from a mysql db, so the information that loads into the div is really one php page with sql stuff in it to display the users response. (i hope that make sense)

Link to comment
Share on other sites

Use ExtJS as it more easily faciliates widgets:

var tab1 = new Ext.Panel({
    title: "Tab 1",
    autoLoad: "ajax.get-tab-contents.php?tab=1"
});

var tab2 = new Ext.Panel({
    title: "Tab 2",
    autoLoad: "ajax.get-tab-contents.php?tab=2"
});

var tabPanel = new Ext.TabPanel({
    renderTo: Ext.getBody(),
    activeTab: 0,
    deferredRender: false,
    items: [tab1, tab2]
});

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.