Jquery coda slider active tab state help for 2nd panel

Hi there
I have created a slider which can be viewed here:
http://alastaircaldwell.businesscatalyst.com/the-man/index.htm
when you click the first tab 'early life' it takes you to the first panel and the tab is highlighted red and active, when you click the right arrow to go to the 2nd panel the tab reverts to the off state however I would like it to remain on, any help would be greatly apprceiated as not sure if it is a css problem or jquery.

I'm not too familliar with Flexslider.  I've been using another jQuery plugin called Cycle2 which performs well in all layouts!  Copy & paste the following code into a new, blank document.  SaveAs cycle_test.html and preview in browsers.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>HTML5 document with Cycle2</title>
<!--Latest jQuery Core Library-->
<script src="http://code.jquery.com/jquery-latest.min.js">
</script>
<!--Cycle2 Plugin Script-->
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery.cycle2/20130409/jquery.cycle2.min.js"></script>
<style>
.cycle-slideshow {margin:0 auto; width:50%;}
.cycle-slideshow img {max-width:100%}
</style>
</head>
<body>
<h1><a href="http://www.malsup.com/jquery/cycle2/">jQuery Cycle 2</a> Responsive Slideshow</h1>
<!--begin slideshow-->
<div class="cycle-slideshow"
    data-cycle-pause-on-hover="true"
                data-cycle-speed="1500"
                >
<!--your images go here-->
<img src="http://malsup.github.com/images/beach1.jpg">
<img src="http://malsup.github.com/images/beach2.jpg">
<img src="http://malsup.github.com/images/beach3.jpg">
<img src="http://malsup.github.com/images/beach4.jpg">
<img src="http://malsup.github.com/images/beach9.jpg">
<!--end slideshow-->
</div>
</body>
</html>
Nancy O.

Similar Messages

  • How to get search help for 2nd  parameter based on the 1st parameter value

    Hi all!
       I have 2 parameters (material no, revision level). I have created a search help for revision level. It has an importing parameter :material no. and one exporting parameter : revision level.When I checked it, it's giving the revision values only for the specified.
    In my report , I have kept these 2 materials in my selection screen.For revision level , I have added the matchcode object which I have created. When I  pressed F4 for revision level, it's giving all the values irrespective of the material no. in the first parameter. How to solve it? Please suggest.

    Hi,
    Try this code filling internal table fields,
    DATA: BEGIN OF values,
            OID TYPE ZCL_OBJECT-OBJECTID,
            ODEC TYPE ZCL_OBJECT-OBJECT_DESC,
           END OF values,
           W_FIELD(10).
    DATA: ZCL_PROJECT-PROJECTID type zcl_project-projectid,
          ZCL_OBJECT-OBJECTID(5).
    DATA: progname TYPE sy-repid,
          dynnum   TYPE sy-dynnr,
          dynpro_values TYPE TABLE OF dynpread,
          field_value LIKE LINE OF dynpro_values,
          values_tab LIKE TABLE OF values.
    CALL SCREEN 100.
    *&      Module  VALUE_PROJECTID  INPUT
          text
    *MODULE VALUE_PROJECTID INPUT.
    CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
          EXPORTING
               tabname     = 'ZCL_PROJECT'
               fieldname   = 'PROJECTID'
               dynpprog    = progname
               dynpnr      = dynnum
               dynprofield = 'ZCL_PROJECT-PROJECTID'.
    *ENDMODULE.                 " VALUE_PROJECTID  INPUT
    *&      Module  VALUE_OBJECTID  INPUT
          text
    MODULE VALUE_OBJECTID INPUT.
       CALL FUNCTION 'DYNP_VALUES_READ'
           EXPORTING
                dyname             = progname
                dynumb             = dynnum
                translate_to_upper = 'X'
           TABLES
                dynpfields         = dynpro_values.
      READ TABLE dynpro_values INDEX 1 INTO field_value.
    W_FIELD = FIELD_VALUE-FIELDVALUE.
      SELECT  OBJECTID
              OBJECT_DESC
        FROM  ZCL_OBJECT
        INTO  (VALUES-OID,
               VALUES-ODEC)
    WHERE PROJECTID = FIELD_VALUE-FIELDVALUE.
       APPEND VALUES TO VALUES_TAB.
    ENDSELECT.
       CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
           EXPORTING
                retfield    = 'OID'
                dynpprog    = progname
                dynpnr      = dynnum
                dynprofield = 'ZCL_OBJECT-OBJECTID'
                value_org   = 'S'
           TABLES
                value_tab   = values_tab.
    ENDMODULE.                 " VALUE_OBJECTID  INPUT
    *&      Module  INIT  OUTPUT
          text
    MODULE INIT OUTPUT.
      progname = sy-repid.
      dynnum   = sy-dynnr.
      CLEAR: field_value, dynpro_values.
      field_value-fieldname = 'ZCL_PROJECT-PROJECTID'.
      APPEND field_value TO dynpro_values.
      IF SY-UCOMM = 'BACK'.
        LEAVE program.
    ENDIF.
    IF SY-UCOMM = 'ANS'.
       LEAVE  TO SCREEN  '0'.
    ENDIF.
    ENDMODULE.                 " INIT  OUTPUT
    START-OF-SELECTION.
    WRITE: / field_value-fieldvalue,
             W_FIELD.
      LOOP AT VALUES_TAB INTO VALUES.
        WRITE / VALUES.
      ENDLOOP.
      if sy-subrc <> 0.
        WRITE / field_value-fieldvalue.
      endif.
    Plzz reward points if it helps

  • Select statement help for sql/oracle newbie

    I have a db for a fake airline. i have a route table that has columns for "FIRST_CLASS_FARE", "COACH_FARE", and "ECONOMY_FARE". I then have a flight table that references the route#, then a trip table that references the flight#. I also have a passenger table and a reservation table that has the passenger # in it. The reservation table also has a column called "reservation class" that has a 'f' for first class fare, 'c' for coach fare, 'e' for economy fare.
    What I am trying to do is create a fill for each individual passenger that shows the total amount they spent on all of their reservations.
    Any suggestions on how to join the tables to create this bill?
    Thanks in advance!

    Is it the way the passenger table has columns and is populated,
    for a passenger A, takes a route - 1 with First class fare - $2500 on flight- B123, to a trip - t1 and reserved for class - 'f'
    If this is the way, then you get the bill from the fare column

  • Tab Item change for two panel group with 4 tabs each

    Hi
    All
    Will tab work for dynamic data loading in a panel group ?
    scenario .
    Panel group got 4 tabs . each tab contains grid view jsf component. these grid view will populate data once the Index page loads . each tab;s grid view will get data dynamically from backing bean with value objects .
    i am getting data for first tab . which is selected as true . but cannot change focus to other tabs. the functionality of tabchange event listener is not working. i checked the data for other tabs grid view. its coming correctly but cann;t see it in jsf page.
    tabs won;t work . is there any reason which stops working of tab , when we pass data dynamically to all grid views in 4 different tabs at a time.
    thanks in advance.
    Rambhapuri

    Data loading is happening , but cann;t change the tab , because tab item listener is not firing . when user clicks on other tab.
    regards
    rambhapuri

  • Configuration help for 2nd lan to lan vpn link

    Hello,
    I have successfully configured a lan to lan vpn link between two offices. I am attempting to add another link to a 3rd office from my home office but am having some trouble. I have attached my configuration and am hoping someone can help me fix my problem. Right now I have a working vpn to 172.16.0.0/24 network and am trying to set up the link to 172.16.3.0/24 as well. To the new vpn connection I can ping the outside interfaces but can't ping anything internally.
    Thanks for your time and help,
    Jason

    Jason
    There is one significant mistake that is easy to fix. You have correctly created a second instance of the crypto map to create a VPN tunnel to the second site. But as currently configured both instances of the crypto map use the same access list:
    crypto map clientmap 1 ipsec-isakmp
    match address 100
    crypto map clientmap 5 ipsec-isakmp
    match address 100
    But each VPN session/tunnel needs its own access list. So I suggest that you make the following changes:
    crypto map clientmap 5 ipsec-isakmp
    match address 101
    no access-list 100
    access-list 100 permit ip 192.168.0.0 0.0.0.255 172.16.0.0 0.0.0.255
    access-list 101 permit ip 192.168.0.0 0.0.0.255 172.16.3.0 0.0.0.255
    This provides a separate access list for each session/tunnel and should resolve that issue. Give it a try and let us know the result.
    HTH
    Rick

  • Need help getting active nav state to work on 1-page vertical slide website...

    Hi guys!
    I've created a vertical slide website which you can check out here...
    When you click on a navigation button, when it takes you to the relevant slide, the active state should move from the Home button to the relevant slide. It works fine without the 3 links on the end to external pages though, it's only when those additional links are in that something seems to be getting confused...
    Does anyone know how I can get the nav states working for the slide section of the website?
    Thank you very much and I hope to hear from you.
    SM

    Try this:
    .nav-collapse a:hover,
    .nav-collapse a:active,
    .nav-collapse a:focus {
      background: #e8e8e8;
    Nancy O.

  • Oninput processing Code help for four variables

    Hi,
    I am  new to BSP. I am trying to write the code for this requirement but always getting error.
    In the layout , I have four input boxes  say input1,input2,input3,input4.
    User can enter anyone or all or some  of them and click OK.
    so oninputprocessing, I want to check if any one of this is not empty then a select statement on a table should execute.
    if the select statement fetches records then it should go to next page.Otherwise it should through exception.
    thank you.
    chittidi

    Hi,
    First define the input fields in layout and in oninputprocessing validate the fields and with the help of flags we can display the messages in same page.
    For displaying messages in detail  [Validation|https://wiki.sdn.sap.com/wiki/x/CIHvB ]
    Here is the sample code in oninputprocessing :
    Case w_eventid.
    when '<button-name>'.
    call method cl_htmlb_manager=>get_data
          exporting
            request       = runtime->server->request
            name
            ='inputfield'
            id            = '<idname>'
          receiving
            data          = w_object.
        w_inputfield ?= w_object.
        w_in_value = w_inputfield->value.
        w_prid = w_in_value.
        clear: w_object,w_in_field,w_in_value.
    if w_input1 is initial.
    fl_flag = 1.
    endif.
        call method cl_htmlb_manager=>get_data
          exporting
            request       = runtime->server->request
            name
            ='inputfield'
            id            = '<idname>'
          receiving
            data          = w_object.
        w_inputfield ?= w_object.
        w_in_value = w_inputfield->value.
        w_prname = w_in_value.
        clear: w_object,w_in_field,w_in_value.
    if w_input2 is initial.
    fl_flag = 2.
    endif.
        call method cl_htmlb_manager=>get_data
          exporting
            request       = runtime->server->request
            name
            ='inputfield'
            id            = 'clntname'
          receiving
            data          = w_object.
        w_inputfield ?= w_object.
        w_in_value = w_inputfield->value.
        w_clntname = w_in_value.
        clear: w_object,w_in_field,w_in_value.
        if w_input3 is initial.
        fl_flag = 3.
        endif.
        call method cl_htmlb_manager=>get_data
          exporting
            request       = runtime->server->request
            name
            ='inputfield'
            id            = '<idname>'
          receiving
            data          = w_object.
        w_inputfield ?= w_object.
        w_in_value = w_inputfield->value.
        w_person = w_in_value.
        clear: w_object,w_in_field,w_in_value.
      if w_input4 is initial.
        fl_flag = 4.
        endif.
    <Select statement>
    Endcase.
    For flags write the following code in layout tab:
    <%
      if fl_flag eq 1.
              %>
              <center>
              <br><font  style="font-size:11px" face="Verdana" color ="#FF0000">"All Fields are Mandatory"</b></center>
              <% endif.%>
    Hope this solves the issue.
    Regards,
    Rajani.

  • Need CSS help Coda-Slider 2

    I'm having trouble setting the width of the <ul> in this Coda-Slider tab set up. I'd like all the tabs across the top to display in one line rather that wrap to two.
    http://www.cidigitalmedia.com/coda-slider-2.0/index.html
    You'll see the last tab wraps below.
    Looked over the CSS and .js and could not find anything setting the <ul> to 552...
    But IE Developer Tools toolbar and Firebug show an inline style of 552px...
    I just can't find where that is.
    CSS file:
    http://www.cidigitalmedia.com/coda-slider-2.0/stylesheets/coda-slider-2.0.css
    Would greatly appreciate some help.
    Best wishes,
    Adninjastrator

    Thanks for your reply!
    Turns out that the <ul> width was a math computation in the .js file (there was no <ul> width coded in the CSS or HTML).
    A helpful soul over at:
    http://stackoverflow.com/
    helped me ID that line in the .js file.
    ul.css({ width: 'auto', marginLeft: -18 });
    I still had to use a neg margin to move the tabs all to the left... but all is working now.
    http://www.cidigitalmedia.com/coda-slider-2.0/index.html
    Best wishes,
    Adninjastrator

  • Issue regarding to change taxcode in tab Gl-account for T.cod MIR7

    Hi Expert,
    I have issue regarding Tax code in Tab Gl-account for t.cod MIR7 which come by-default , i wan to change that taxcode based on purchase order number which also have tax code with multiple line item in tab PO Refrence,,i want first taxcode of tab PO Refrence to be copied in first line item of tab GL-account  based on po number ,can anyone put a light on this issue with priority..
    Regard's,
    shaikh khalid.

    Hi,
    You can clear the old items posted in 28000 with the other leg in suspense / clearing GL Account.
    Once the above is done, please post once again to Vendor clearing the suspense / clearing account.
    Ensure that the suspense / clearing account does not have any open items.
    The lines are transfered to new recon account.
    Hope this helps, if yes, please assign points.
    Regards,
    Sankar

  • Setting Up SSD Solid State Drive for Cache...Help!

    Hello,
    I am trying to configure my system to do really heavy special effects using After Effects and other programs.  I bought a new computer with specs below and a Solid State Drive for the cache as recommended in the White Papers.  I plug the SSD into a port on top of the machine.  I must have it configured wrong because I keep getting the message "disk cache folder cannot be the root of a volume."  I don't know how to configure this correctly so my work will use the SSD properly.  Can someone walk me through this?  Nicole  The SSD is a Seagate SSHD 1TB hybrid drive that is supposed to boot and perform like an SSD.  The motherboard is an Asus X79 and the processor is an i7 4820k (Ivy Bridge E) Thanks!
    Processor Brand
    Intel®
    Processor
    Intel® 4th Generation Core™ i7
    (Also known as the CPU). The part of the computer that interprets and executes instructions. Think of it as the brain of the computer.
    Processor Speed
    3.7GHz (with Turbo Boost up to 3.9GHz)
    How fast a computer processor carries out instructions. In general, faster is better, but processor speeds across brands may not be equivalent (i.e., a 3.0GHz AMD processor may not be the same speed as a 3.0GHz Intel processor).
    Cache Memory
    10MB on die Level 3
    A small segment of memory that stores frequently used information for fast access by the processor, improving response time.
    System Memory (RAM)
    16GB
    The memory a computer uses to run its operating system, applications and active data files. Greater amounts of RAM improve speed and enable more applications to run at once.
    System Memory (RAM) Expandable To
    128GB
    Maximum amount of memory a computer can support (as opposed to the amount that comes preinstalled).
    Type of Memory (RAM)
    DDR3 SDRAM
    Graphics
    NVIDIA GeForce GTX 660
    Type of graphics (video) adapter (usually built into the motherboard), identified by manufacturer and model.
    Video Memory
    2GB (dedicated)
    Manages display functions, including screen refresh rates, resolution and color. The more video memory a computer has, the better graphics and video will look.
    Audio
    High-definition 7.1-channel surround sound
    Speakers
    None
    Network Card
    Built-in 10/100/1000 Ethernet LAN
    Allows a computer to connect to a network either by using cables (Ethernet) or wireless technology (IEEE 802.11).
    Wireless Networking
    None
    Recordable DVD Drive
    Yes, double-layer DVD±RW/CD-RW
    Drive that can read CDs and DVDs, as well as write and rewrite CDs and various types of DVDs.
    Recordable DVD Drive Speeds
    Drive speeds not specified
    Maximum write (DVD±R), rewrite (DVD±RW) and read (DVD-ROM) speeds of the DVD±RW drive.
    Direct-Disc Labeling
    No
    Digital Media Reader or Slots
    No
    Available Expansion Bays
    External: 6 (5.25"); Internal: 2 (3.5")
    Available Expansion Slots
    4 PCI Express x16, 1 PCI Express x1, 4 DIMM
    For digital cameras and digital audio players: Slots that allow the addition of a removable memory card, such as Secure Digital or CompactFlash, to increase storage capacity.For computers: Slots on the motherboard that accept sound cards, video cards, memory and other upgrade cards.
    USB 2.0 Ports
    3 USB 3.0 (1 front, 2 rear); 8 USB 2.0 (2 front, 6 rear)
    Ports that allow high-speed (up to 480 Mbps) data transfer between compatible devices.
    Keyboard Description
    USB
    Indicates design, functionality or connection features. Some keyboards offer special buttons for gaming or multimedia use, while other keyboards include features such as illumination or wireless connectivity.
    Other Control Devices (mouse, etc.)
    USB mouse
    Operating System Platform
    Windows
    Operating System
    Windows 8
    The master software that controls hardware functions and provides a platform on top of which any software applications will run. Commonly used systems include Microsoft Windows and Mac OS X for computers and Palm OS and Microsoft Windows Mobile for PDAs.
    ENERGY STAR Certified
    No
    ENERGY STAR is a joint program of the U.S. Environmental Protection Agency and the U.S. Department of Energy helping us all save money and protect the environment through energy efficient products and practices.
    Best Buy PC App
    No
    HDMI Output
    Yes
    Blu-ray Player
    No
    Graphics Chip
    NVIDIA
    Drive Capacity
    2TB
    Discrete Graphics
    Yes
    Gaming Series
    Yes
    Hard Drive Size
    2TB
    Capacity for storing programs, photos, video, music and other electronic information. Hard drive capacities range from a few gigabytes to several hundred.
    Hard Drive Type
    SATA III (7200 rpm)
    Hard drives are classified based on the interface they use to connect to a computer. Common interfaces for internal hard drives include EIDE, PATA (also known as, ATA and IDE), SATA and SCSI. Common interfaces for external hard drives include USB 2.0, FireWire and eSATA.
    UPC
    892167017218

    >dont know how this is done in windows 8
    Open Windows Explorer (for Win7) which I think was renamed File Manager in Win8 and go to the "root" of the drive and right click and select New--Folder from the popup window

  • Redemption code needed to get serial number for Lightroom is not activated. What to do?

    redemption code needed to get serial number for Lightroom is not activated. What to do?

    Redemption Code http://helpx.adobe.com/x-productkb/global/redemption-code-help.html

  • My apple id is not working for my iPhone activation. Please help me.

    my apple id is not working for my iPhone activation. Please help me.
    i'll just restore it.

    Not working in what way?
    Only the Apple ID that was used to enable "Find My iPhone" on the device can be used to bypass Activation Lock.

  • TS4268 hi my imessage isnt working so I turned off imessage and now its been saying "waiting for activation" and has been for a long while now? can you please help me!!! Also saying that my apple ID password is inccorrect when its not!

    Hi,
    My imessage isnt working so I turned off imessage and now its been saying "waiting for activation" and has been for a long while now? Also saying that my apple ID password is inccorrect when its not! Can anyone help me?
    Thanks

    While we all have MacBooks in this forum most of us don’t have Lion. There's a Lion Support Community where everybody has Lion.You should also post this question there.  https://discussions.apple.com/community/mac_os/mac_os_x_v10.7_lion

  • Search help for material code in VA01

    Dear Experts,
    In VA01 tcode in item level if user press f4 in the material code then we will get all the f4 helps for few fields.Now i need to add one more field  mtart from mara table  in the existing  search help of material code.
    plz suggest me how can i proceed.
    If u have any documets regarding adding one more fied to existing search help plz send me.
    Thanks & Regards,
    farook.
    Edited by: farook shaik on Aug 18, 2009 8:58 AM

    Hi,
       You can do that using search help exits you would find several threads already posted to the forum for this like below:
    Link[Search Help Exits|Search Help Exit;
    Regards,
    Himanshu

  • URGENT PLEASE HELP-Session State Provider for 8i.

    We are looking for a SESSION STATE PROVIDER for .NET 2.0 for Oracle 8i. Please help to find a solution. The current installation on the Oracle website does not work for 8i.
    Thanks a BILLION in advance.

    You'll need to install the ODP 11 beta...

Maybe you are looking for

  • Installing OWB_11.2.0.1.0.linux on DB 10.2.0.4.0

    I need help installing OWB on DB 10g. I think that there is no previous installation of OWB on the database, because there is no OWBSYS but we have one OWB. There is no $OWB_HOME on linux. But how can i be sure of that? Thx

  • No password with phone - wiped it all

    I purchased my BB9300 in the USA but I live in Australia. The phone works fine with no trouble at all but I was trying to add the Facebook app to it and it wanted a password. I made a new password 10 minutes prior and it repeated naturally that they

  • Lag/delay when streaming Movies from external HD

    I'm streaming movies through iTunes on my iMac (with Airport Exteme) from an external HD.  Unfortunately, I'm experiencing a jerky/stuttering/flickering image even after it is finished buffering. Can someone please recommend a way to fix this?  I hav

  • Change Layout in Slideshow

    Can you change in Aperture the layout of the panels for theme "Sliding Panels" in a slideshow? I know it is not possible in IPhoto Thanks

  • ACR 5.4 Install problems Windows/vista

    Need the 5.4 update for Camera Raw. Have tried the download page and unzipped etc. When i run the setup.exe i get first grey window and click next, second window says adobe bridge running, close it to continue when nothing else is open, driving me nu