Accordion tabs flash open on page load

My accordion is set to load with no panels open. But when the
page loads all panels remain open until everything from the page is
downloaded, then they close as they're supposed to. Is there a way
to keep them closed the whole time until a tab is clicked?
Thanks!

This is great! Thank you so much! The widget is working
beautifully now with cookies enabled. I don't really have any idea
how it works, but it does!
The only problem now, that I didn't notice before I made
these last changes, adding the cookies effect, updating to v1.6.1,
and adding onDOMReady, and onDOMUtils.js, is that when I click a
link to a new page within the site that the browser hasn't loaded
yet (if I clear the cache first, then browse around), then every
new page flashes my default background color across the entire
screen before letting me see the new content. Once the pages have
been loaded and are in the cache, then I can navigate through them
nicely with only the main content area changing, rather than the
whole page. Is it possible to make it so that when new links are
clicked, the side and top navigation areas, which are the same on
all pages, stay visible while the new content is loaded?
Thanks again for your help!

Similar Messages

  • Problem with accordion widget flashing open and shut when page loads

    why is it that my accordion widget flashes open and shut when the page is loading (see http://vincentballmusewebsite2013test.businesscatalyst.com/digital-illustration.html#.UVDr Ehx7JyII)  have tried everything to solve this, and Adobes customer service is terrible they don't get back to you when they say they will.
    Please help me someone,
    Thanks

    Thank you Zak for your help, I spent 5 hours going round in circles trying to fix that problem and that's all I needed to hear, a bit of honesty and integrity.and yes, Adobes terrible customer service has still not got back to after promising 2 level technical support to contact me last Monday, I wish there'd keep their promise
    Pamela, did you try my test website or my own website and if so my own has now no accordion widget on it and my test website may need you to try loading a few times to see if it really works or not, sometimes it does actually work even on a pc but most times not.
    thanks for you help too.

  • Random tab open on page load?

    If someone could figure this one out... oooo what a gem that
    would be and good bye Flash.
    I have a tabbed menu scripted and of course on a page load
    the same tab and its content load everytime. Is it possible to have
    a random tab open when the page loads in a browser?
    Thank you in advance for your time!

    Include SpryDOMUtils.js in your header (required for onload
    listener)
    Spry.Utils.addLoadListener(function(){
    var
    tabs =
    5 //(amount of tabs u have)
    TabbedPanels1.showPanel(Math.round(
    tabs*Math.random())); //TabbedPanels1 beein the name of the
    tabwidget constructor change to your own name.
    );

  • Spry Accordion open on page load

    How do you stop the Spry Accordion from being open while the page is loading - as soon as the page loads the Accordion closes to the way it has been designed - it is just annoying!

    Starting with All Panels Closed
    This feature is only supported when using variable height panels, so  you must pass a false into the Accordion's constructor for the  "useFixedPanelHeights" constructor option, and a -1 for the  "defaultPanel" option.
    Gramps

  • Accordion Panels Open During Page Load

    All my accordion panels appear open for a second before my page completely loads.  http://home.comcast.net/~steven.kay/
    I found this thread, but am still not clear on the solution given.  http://forums.adobe.com/message/22365#22365
    Thanks.

    Never mind... I downloaded the new js file... (duh)

  • Disclosing first tab (in a panel tab) always when a page loads up

    Hi,
    I am using JDeveloper 11.1.1.4 and I have a page which contains panle tab. I have configured MDS in my application. So if I close the page visiting 2nd tab, the next time if I visit the page, it opens up with the 2nd tab disclosed.
    What I want is to disclose the first tab when the page loads up. Can I exclude this page from MDS or Is there any preferred way of doing this in ADF?
    Regards,
    V. Praveen

    Hi Sudipto,
    Thanks for your reply. Do you mean to say that I need a taskflow to achieve this? The reason why I am asking this is because my page is a simple page which comes under unbounded taskflow of adfc-config.xml.
    Is there any other approach in achieving this?
    Regards,
    V. Praveen

  • How do I set new tabs to open home page

    How do I set tabs to open my home page instead of a blank page?
    == This happened ==
    Every time Firefox opened

    Hello Justin.
    You can simply middle-click the home button to open the home page in a new tab, or you can install one of the many extensions that let you tweak what the new tab opens. [https://addons.mozilla.org/en-US/firefox/addon/1122 Tab Mix Plus] and [https://addons.mozilla.org/en-US/firefox/addon/777/ New Tab Homepage] are two of them, although they have different focuses.
    I hope this helps.

  • Dialog Box Open before Page load using af:CommandNavigationItem

    Hi,
    I have a CommandNavigationItem menu, the requirement is simple.
    Use Case:
    1. On click of one of the menu item, i need to display a message or prompt user to select "OK" or "Cancel"
    2. If user clicks "OK" will navigate to the require page. and "Cancel" will stay on the page.
    I have used couple of things like, creating a af:popup with a af:dialog and calling this popup from managed bean on page load, it works fine get a popup with a "OK" "Cancel" text. But the problem is it opens the popup fine but the parent page get loaded also.
    Please help me to find any solution? Will appreciate your time!!
    Thanks
    Neeraj Halder

    thanks vinod,
    I have tried but struggling with binding of the popup.
    1. let say when i login to my application my first page is "homeView.jspx", so on homeView.jspx i have written the code for popup.
    2. And in the menu i have "home" and "details", so when i click the "details" menu this popup should open, and on clicking ok it should navigate me to the Details page, as you suggested ActionListner for that.
    Please see below what i have done till yet.
    ActionListener Code:
    /*code in jsp
    actionListener="#{backingBeanScope.testViewBean.checkOnClickofDetails}"
    /* code in java with a backing bean scope
    private RichPopup validationMessageDialog;// popup id
    public void checkOnClickofDetails(ActionEvent actionEvent) {
    RichPopup.PopupHints popupHints = new RichPopup.PopupHints();
    getValidationMessageDialog().show(popupHints); //
    popup in homeView.jspx
    <af:popup id="validationMessageDialog"
    binding="#{backingBeanScope.testViewBean.validationMessageDialog}">
    <af:dialog id="d3" cancelTextAndAccessKey="cancel"
    dialogListener="#{backingBeanScope.testViewBean.loadDetails}"
    title="Prompt">
    <af:outputText value="#{msg.AGENT_NOT_FOUND}" id="ot3"/>
    </af:dialog>
    My doubt is i am doing something wrong with the scope of the managed bean. in the above code i have used backing bean scope,
    let say i have a java file example ABC.java, which is a backing bean scope given in adfc-config.xml. can i use this one java file for two of three different jspx as a backing bean? Hope i am clear here? :)
    2) when we create a jspx and its backing bean at a time, is there any internal mapping happen apart from adfc-config.xml that one jspx will have only one java file as a backing bean?
    Sorry if i am making this more complicated, above question comes because, when i move the same popup code in "Details.jspx" page and at the time of creation of this page i have created backing bean also so when i calling this function on page load "checkOnClickofDetails" which is in the Details.java (backing bean) the popup comes fine. but unfortunately cannot use this because parent page get laoded with this popup also.
    let me know if i am doing something wrong?
    Thanks,
    Neeraj Halder

  • Page Flashes Yellow when Page Loads

    Hi, I actually have a web guy doing a site for a client of
    mine, but when the site loads, the whole background flashes bright
    yellow and subsequently each page flashes yellow before it loads as
    well, but only once. Web guy took out the SWF animations I sent him
    and the flashing stopped. I've given SWF animations to other web
    designers and this hasn't happened. Would someone be kind enough to
    look at the site and let me know if they have any ideas. It's still
    a work in progress. Here's the link:
    http://www.trendmultimedia.com/arrowhead3/index.html">website[/L]

    In the site CSS, there is this:
    body {
    background-color: #FFFF00; /**this is yellow**/
    Change it to dark blue.
    Also, that page has some html errors including 2
    </body> </body> tags at the
    end of the document. Only one end of body tag is required.
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "Mediadude8" <[email protected]> wrote in
    message
    news:gbg5r6$14q$[email protected]..
    > Hi, I actually have a web guy doing a site for a client
    of mine, but when
    the
    > site loads, the whole background flashes bright yellow
    and subsequently
    each
    > page flashes yellow before it loads as well, but only
    once. Web guy took
    out
    > the SWF animations I sent him and the flashing stopped.
    I've given SWF
    > animations to other web designers and this hasn't
    happened. Would someone
    be
    > kind enough to look at the site and let me know if they
    have any ideas.
    It's
    > still a work in progress. Here's the link:
    >
    http://www.trendmultimedia.com/arrowhead3/index.html
    >

  • Displaying "af:panel accordion" dynamically in UI when page loads

    Hi
    My problem is, whenever my homepage loads "af:panel accordian" should display dynamically in UI. Like, if I mention value 4 in manged bean it should display 4 panel accordion in UI when it loads, and if it is 6 then it should display 6 panel accordion in my homepage.
    Please help me in this issue. Looking forward for you response.
    Regards
    Venkat.S

    Hi
    Actually only one panel accordion will be in my UI(sorry for my previous message), but the "af:showdetailitem" under af:panel accordion will differ and the values of this will varies each time when the page loads. So dynamically i should add af:showDetailItem into this af:panelAccordion from manged bean.
    Regards
    Venkat.S

  • Spry Accordion menu opens on page load then closes

    Hello,
    I'm having issues with a SPRY Accordion menu loading with all of the tabs open, then closing once the page finishes loading.
    Example page is here:
    http://thesparkmachine.com/mca2009/academics
    (site is still being worked on, so forgive any oddities)
    Is this something that is occurring because of the large amount of material loading on the page at once? The site is Joomla!-based, and there are close to a dozen modules on the page, plus an random background image script.
    Any advice would be helpful.
    Thanks!

    I see you have also fixed your menu sections linking..
    But i still wanted to give you some advice on why it opens and closes.
    If you check out the source of your page, you will see that the constructor for your accordion is at the bottom of the page. When the browser loads the page, it parses from top to bottom, so it has parsed the accordion markup. But not yet the constructor for the accordion, so once it finally done with parsing the rest of the markup it finds the constructor and executes it.
    What would have helpt, if you just moved the <script> with the constructor to directly under the accordion. So when the accordion markup has been parsed the brower directly executes the scripts.

  • When I open a new tab, the yahoo search page loads rather than the blank page. How do I revert to the blank page setting?

    This only started yesterday, but it really bugs me. I can't figure out how to get rid of it!

    There's a hidden setting for new tabs. Here's how to access it:
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the search box above the list, type or paste '''newtab''' and pause while the list is filtered
    (3) Double-click the '''browser.newtab.url''' preference and enter your preferred page:
    * ''Page thumbnails (default)'' => about:newtab
    * ''Blank tab'' => about:blank
    * ''Built-in Firefox home page'' => about:home
    * ''Any other page'' => full URL to the page
    Press Ctrl+t to open a new tab and verify that it worked. Fixed?

  • Flash play on page load problem

    helphelphelp please. i'm totally new to dreamweaver, so if
    this is completely pedestrian question i apologize.
    i've inserted a .swf animation file in a dreamweaver file
    (insert–media–flash) that i want to play when a viewer
    initially opens the site window on the finished site. i've assigned
    the "onLoad" event in the "control shockwave or flash" behavior in
    the bahavior panel. the file plays in the dw file - but nothing
    shows up when i preview the file in a browser. just a white screen.
    when i control click on the page in the brower it says the movie
    didn't load.
    where did i go wrong? again, i'm new to this stuff, but as
    far as i can tell, i've gone thorugh all the steps my book says i
    should. what am i missing?
    thanks in advance-
    d
    dreamweaver 8, flash 8, mac os 10.4.3, capricorn

    Let me make sure I understand.
    1. You have a swf file, and when you browse directly to that
    file, it plays
    in the browser.
    2. When you insert it on a page in DW (which version?), you
    get a gray box
    with an "F" in the middle?
    3. When you select that box, and press "Play" on the Property
    inspector,
    you get only a white box and no other activity?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Puzzle Ice" <[email protected]> wrote in
    message
    news:f7ng2a$bbt$[email protected]..
    > Hi Murray,
    >
    > I tried that. But, the swf displayed a white box even
    when I clicked on
    > the
    > play button at the DW design mode's properties. I
    verified that the swf
    > has no
    > problem, as I am able to launch the swf's content
    directly at window's
    > file
    > explorer as well as Flash appln. What could be wrong,
    the steps I took to
    > create the swf and DW's page are from McGraw's books.
    Pls adv.
    >

  • When using tab, automatically opening Home page

    When I open a new Tab, it directs me to a blank page. I would rather that it would open to my home page. I know that there is something out there to make it so. But I am at wits end.

    A blank page on a new tab is the Firefox default.
    Install the following add-on: https://addons.mozilla.org/en-US/firefox/addon/newtaburl/
    After installation and restarting Firefox:
    #click Add-ons > Extensions
    #scroll down to NewTab URL and click Options
    #click on "Home Page" to select it '''''OR''''' click on "URL" to select it and enter the address of the page you want to open when you open a new tab
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]

  • Can clicking on an Accordion Tab also open a separate Spry Data region?

    I am generating a spry Acordion to list programs for an organization. When someone clicks on a tab and the content shows below I would like a set of photos and comments to open in a different adjacent div. I am wondering if the tab could act as the sorting catagory for a set the images/comments to appear next to the Acordion. Is it possible? I am new to all this and do not know javascript.

    Here is what I have so far:
    http://www.suffieldeaa.org/ProgR4.html
    The example you sent seems to put the content to the right that includes pictures and text. What I want is the content as a usual Accordion box and also opens a data set to the right where my fixed images are. My data set would include images of the related content and also include quotes. The html in your example doesn't seem to clearly reflect where the Accordion is and where the dataset  region is unless it is just the Accordion only. I hope I am making sense.....

Maybe you are looking for

  • How to I get audio to go to a different room?

    I need help understanding if I could stream audio from an Apple TV to somewhere else wirelessly. In my proposed setup the Apple TV would be located next to my TV and connected using HDMI for video. However the audio needs to go somewhere else wireles

  • SL install seemed to fail - now my MBP can't boot from HD or SL DVD

    H E L P. Just bought SL family edition - upgraded my iMac 24 - worked fine so then I tried to upgrade my MBP (2+years old). At first the MBP just ejected the SL DVD - found lots of similar issues on this board. I finally got it working by holding my

  • At&t Order Status Question

    My parents ordered an iPhone via the At&t store 7/23. I just checked the order status today but no iPhone 4 order shows up on the page. Does it take this long for At&t to process an order or is there something I'm missing? Thanks. Message was edited

  • No sound when AT2020 USB mic is connected.

    Followed set up instructions I can see logic pro x recognizes  the mic but I get no sound. I will only get sound from my USB keyboard when the USB mic is disconnected.

  • Help w. data question please

    I have only 2 gb a month of data, I have hit 2.003 and billing is tomorrow, How much will i be charged for that .003??? it says $10 for any mb or higher, does anyone know... or have experience? thank you