up vote 0 down vote favorite
share [g+] share [fb]

can any body help me the create a menu(Home, My Quote, Send a Quote) using for my facebook application. When I select a tab, the menu disappears when a new page opens up. I need to display my page under the menu itself, so how to do that

the code is

  <div>
    <fb:tabs>
      <fb:tab-item href="http://apps.facebook.com/ranpariya/index.php" title="Home"      
      <?php if ($page == 'index.php'):?>selected="true"<?php endif;?>/>
   <fb:tab-item href="http://apps.facebook.com/ranpariya/friends.php" title="Friends" <?php if ($page == 'friends.php'):?>selected="true"<?php endif;?>/>
    <fb:tab-item href="http://apps.facebook.com/ranpariya/my_tab.php" title="Invite Friends" align="right" <?php if ($page == 'invite.php'):?>selected="true"<?php endif;?>/>
    </fb:tabs>
  </div>
link|improve this question

1  
sounds very strange - are you sure you have it included in all the other pages? if yes take a look at the generated source maybe there is a minor parsing error – Andreas Klinger Sep 5 '09 at 12:06
feedback

1 Answer

up vote 0 down vote accepted

Just have a DIV under the menu and change it's innerHTML (or, if using jQuery, call $("#myDiv").html(sHtml);) with different content, based on the command selected.

link|improve this answer
hello friend , already i have to put menu under the div tab, but there is no making any effect, the menu disappears when a click on the any tab – Ashvin Ranpariya Sep 5 '09 at 7:38
1  
What I mean is, have a separate DIV element, name it "content". Catch the tab click event. Upon click, change the HTML of content to the HTML you'd ike to see under that tab. – Traveling Tech Guy Sep 5 '09 at 7:49
can u give me an example of it – Ashvin Ranpariya Sep 5 '09 at 7:54
thanxs a lot to help me – Ashvin Ranpariya Sep 5 '09 at 14:17
feedback

Your Answer

 
or
required, but never shown

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