Implementing a "back button" in a JSC project.

I would like to give my use a "back button" that acts like the back button on most browsers.
In other words, add a button to a page and when the user clicks that button, the user will be sent back to the previous page just like if they clicked the back button on the browser.
I assume that this can be done using the onClick Javascript event for the button, but what exactly needs to be done in that method?
I searched the Internet and it looks like something like this might work:
Go back
But how to convert that to JavaScript inside the JSC app I do not know.
Does anyone know how this is done?

Note that I tried adding:
history.back()to the onClick event, but that didn't do anything.
My full page code looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page">
    <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
    <jsp:text><![CDATA[
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
]]></jsp:text>
    <f:view>
        <html lang="en-US" xml:lang="en-US">
            <head>
                <meta content="no-cache" http-equiv="Cache-Control"/>
                <meta content="no-cache" http-equiv="Pragma"/>
                <title>DisplayDiagnosis Title</title>
                <link href="resources/stylesheet.css" rel="stylesheet" type="text/css"/>
            </head>
            <body style="-rave-layout: grid">
                <h:form binding="#{DisplayDiagnosis.form1}" id="form1">
                    <h:panelGrid binding="#{DisplayDiagnosis.centeringGridPanel}" columns="1" id="centeringGridPanel" style="left: 0px; top: 0px; position: absolute">
                        <h:graphicImage binding="#{DisplayDiagnosis.image1}" id="image1" value="resources/myLogo.JPG"/>
                        <h:panelGrid binding="#{DisplayDiagnosis.diagnosisPanel}" columns="3" footerClass="" id="diagnosisPanel"/>
                        <h:panelGroup binding="#{DisplayDiagnosis.groupPanel1}" id="groupPanel1" style="height: 50px; width: 100px">
                            <h:commandButton binding="#{DisplayDiagnosis.button1}" id="button1" onclick="history.back()" value="Back"/>
                        </h:panelGroup>
                    </h:panelGrid>
                </h:form>
            </body>
        </html>
    </f:view>
</jsp:root>

Similar Messages

  • URGENT!!!!! Back Button functionality

    Hi folks,
    I have to implement the back button functionality in swing.I have currently 4-5 screens and i navigate through them. I have to add back button on each screen. And if it is pressed user should go to previous screen and also previous screen status should be retain.I mean the fields should be populated.
    I would really appreciate if anyone can help me in this.It would be of great help anyone have code snippet.
    Thanking you in advance...Its URGENT guys...
    Regards
    ashish

    You can use Card Layout for this.

  • Question about back button and Onload function in a jsp

    Hi All,
    I am having two jsp pages, say a.jsp and b.jsp. I had a javascript onload function which refreshes all the fields in a.jsp. When i enter some values in a.jsp, based on those values i will be getting the results in b.jsp. Now when i click the back button in b.jsp, it will go to a.jsp again. The problem i am facing is when i click this back button, because of the onload function in a.jsp all the fields in a.jsp are getting refreshed but i want the values which i entered previously in that page. Is there a way that i can do this such that the onload function will not run when i come to that jsp by clicking the back button.
    Also i would like to know why a.jsp is reloading when we click the back button in b.jsp and coming to a.jsp. Is this way how back button will function. I am not sure of it. Plz clarify my doubts..
    Thx.....

    Normally it is not advisable to use the browser back button rather if there is a need we should
    implement the back button functionality.
    For e.g
    In b.jsp
    <head>
    </head>
    <script language="Javascript">
    function fnBack()
      document.frmHeader.action = "a.jsp";
      document.frmHeader.submit();
    </script>
    <form name="frmHeader" method= "post">
    <input type="hidden" name="hdCheckFromB" value="Y">
    <p>
    <input type="button" name="btnBack" value="Back" onClick="javascript:fnBack();">
    </p>
    </form>
    </body>---------------------------------------
    Now , in a.jsp
    <%
    String strBackParameter = requst.getParameter("hdCheckFromB");
    %>
    // Now if strBackParameter is carrying a value "Y" , then we know its from B else body onLoad refresh-------------------------------------
    Hope this helps.
    Thanks

  • Enabling Browser Back Button for FLEX App

    Can anyone suggest me a way to implement Browser Back Button work with Flex App which runs in every browser and works perfect bug free ???

    thanx for the reply but unfortunately its not running in IE6 ... any idea why ?

  • Back button and bookmarks

    will you implement the back button and bookmarks functions in
    spry?

    Hi Petrus,
    It is on our list of enhancement requests.
    --== Kin ==--

  • My e-learning consists of 40 slides. I am publishing the project as HTML5, while previewing, when I use the back button on the playbar, there is an audio mismatch. Some other audio is played for that slide. Please help.

    My e-learning consists of 40 slides. I am publishing the project as HTML5, while previewing, when I use the back button on the playbar, there is an audio mismatch. Some other audio is played for that slide. Please help.

    Hi there,
    Can you please share your Captivate version?(Help>About Adobe Captivate)
    Thanks,
    Nimmy Sukumaran.

  • How2 implement back button

    Hi Everyone!
    I have a static webpage with a link to an htmldb application (no authentication, just a report).
    I would like to create a browser back button in htmldb, that does just this:
    onClick="history.back()"
    But all created buttons demanded a page (in htmldb - or url) to branch to.
    What would be the best way to implement such an back button?
    Thanks,
    Michael

    Hi Michael,
    i think your HTMLDB-page is a report. So do the following steps:
    1. Create a button
    2. Select the region for the button
    3. Select "Create a button in a region position"
    4. Give the button a name and a label and - that's important - select as action "Redirect to URL without submitting page"
    5. On the wizard page for branching select as target "URL" and enter the URL (at the bottom of the page) "javascript:history.back()"
    6. Click "Create button"
    That's all.
    Thomas ;-)

  • Back buttons and required fields...how to implement?

    Hello
    I would like some thoughts on the best approach to the following problem please.
    -You have a wizard, lets say made up of 2 pages.
    -Page 2 has some required fields.
    -User goes from page 1 to page 2 then wants to return to page 1 for whatever reason.
    -(Assuming they havent filled in the required components), what is the best way to let the user navigate back to page 1, without the system kicking in its required fields warnings etc..
    One option I have thought of is populating the fields myself, but this feels like a hack.
    Second option could be to edit the required=#{} of the required components when the back button is pressed?
    Any thoughts?
    JC.
    Message was edited by:
    jamesclinton

    Good tip.
    ok, back to the main thread. immediate = true will result in any data the user entered being forgotten. The solution does by-pass the required rules, so its a mini result.
    Tomahawk does have a stateSave component.
    <t:saveState id="save" value="#{bean.xxx}" />
    And a JavaScipt listener component.. I'm thinking both or one of these could be used to remember/store the state..
    If anyone has any other solutions then please post.
    JC
    Message was edited by:
    jamesclinton

  • Back Button for export to SWF

    Hi, I am working on some interactive wire frames using indesgn. It's actually a test to convince my boss that indesign can handle this type of project. It was all going well until I tried to implement a back (previous) button.
    I am exporting the file to SWF as this option seems to give the best options for navigation. I have tried to use the built in 'previous' button but this just seems to take me back one page - e.g. if I navigate from page 1 to page 10 and then hit the previous button it takes me to page 9 and not page 1.
    Can anyone help. Or explain why this can be achieved if you export to PDF but not to SWF.  Thanks in advance.

    I would say that is the farthest thing from a description for why dynamic loading is done in Flash that I could think of.  While the amount of code that a file has to process can be a performance burden for a file to get started, in the end the code has to live in the swf file that you create so there is no opportunity to dynamically load the code.
    Dynamic loading involves keeping out the heavy content such as sound, video, and large image files until they are required for use in a file.  If you have alot of images that are being used, then it is better to have them loaded in dynamically when the file is running rather than having them built into the file.
    I can't really think of a time when dynamic loading is not the better way to go regardless if it involves a web-based implementation or not.  But for the web, your enemy is time/user-patience... any time some user has to twiddle their thumbs waiting for a file to load is time they are more likely to spend going elsewhere to find what they seek.

  • How to prevent going back to the previous page by hitting the Back button ?

    In the html code I generate from my servlet, I have the following :
    <Html>
    <Head>
    <Title>Cox Part Time Benefit App Login Page</Title>
    <Meta http-equiv="Pragma" content="no-cache">
    <!-- Pragma content set to no-cache tells the browser not to cache the page. This may or may not work in IE -->
    <Meta http-equiv="expires" content="0">
    <!-- Setting the page to expire at 0 means the page is immediately expired. Any vales less then one will
    set the page to expire some time in past and not be cached. This may not work with Navigator -->
    <Meta http-equiv="Cache-Control" content="no-cache">
    <!-- This directive indicates cached information should not be used and instead requests should be forwarded
    to the origin server. This directive has the same semantics as the PRAGMA:NO-CACHE -->
    </Head>
    I hope it can prevent user from going back to the previous page by hitting the Back button on the browser, but it doesn't, what's the right way to do it ?
    Frank

    I think I'm half way now, but something is missing. I have the following filter :
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.*;
    public class ResponseHeaderFilter implements Filter
      FilterConfig fc;
      public void doFilter(ServletRequest req,ServletResponse res,FilterChain chain) throws IOException,ServletException
        HttpServletResponse response=(HttpServletResponse)res;
        for (Enumeration e=fc.getInitParameterNames();e.hasMoreElements();)        // Set the provided HTTP response parameters
          String headerName=(String)e.nextElement();
          response.addHeader(headerName,fc.getInitParameter(headerName));
        chain.doFilter(req,response);                                              // Pass the request/response on
      public void init(FilterConfig filterConfig)
        this.fc=filterConfig;
      public void destroy()
        this.fc=null;
    }And in my web.xml, I have something like this :
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
      <servlet>
      </servlet>
      <servlet-mapping>
      </servlet-mapping>
      <session-config>
      </session-config>
      <welcome-file-list>
      </welcome-file-list>
    <resource-ref>
    </resource-ref>
    <filter>
      <filter-name>ResponseHeaderFilter</filter-name>
      <filter-class>ResponseHeaderFilter</filter-class>
      <init-param>
        <param-name>Cache-Control</param-name>
        <param-value>private,no-cache,no-store</param-value>
       </init-param>
      <init-param>
        <param-name>Pragma</param-name>
        <param-value>no-cache</param-value>
       </init-param>
      <init-param>
        <param-name>expires</param-name>
        <param-value>0</param-value>
       </init-param>
    </filter>
    </web-app>I rebuilt the project and ran it, and yet, I can still hit the "Back" button and get to previous page, what am I missing ? Is what I've done in the web.xml file enough to set it up, or do I need to call ResponseHeaderFilter somewhere in my servlet in order to use it ?
    Frank

  • Is it possible to invalidate session when I click my browsers back button

    Hai
    I have a question.
    I am building a jsp page with multiple forms.As of now,
    no login system has been implemented.
    I need my session to time out when the client click on the back
    button on the browser to prevent data corruption.
    Is there a possible way to do this in Java/ Script
    I know the use of session.invalidate() but how to tie it up to the
    browser's back button
    A second problem
    If I use session.invalidate() on Tomcat 3.2
    I find that it is not invalidated.But this same function on tomcat 4
    doesn't have any problem
    Could anyone help on these issues
    Thanks

    You don't mean you want to invalidate session every time you move to a new page, do you? If you do, after implementation of login system the users will be asked for passwords at each page. If you don't, it's better to use headers for your response.
    response.setHeader("Cache-Control", "no-cache");
    response.setHeader("Expires", "-1");

  • Session state and browser cache - Back button problem

    Hi all,
    I have a problem (and unless I'm missing something I think we all do) with session state and use of the browser's Back button. I really hope I'm just being dumb...
    Background scenario:
    Page P has a sidebar list allowing the user to select what content is displayed (e.g. 'stuff relating to X, Y or Z' where X, Y and Z are rows in, say, a table of projects). When a list entry is clicked, we branch to page P with the value of the list item placed in an application-level item (call it G_PROJECT). Reports on page P use G_PROJECT in their WHERE clauses.
    So, click list entry X and G_PROJECT is set to X and page P shows reports for project X.
    Page P also has a set of buttons which branch to various edit pages which allow attributes of page P's current project to be updated. These pages similarly use G_PROJECT in their WHERE clauses.
    Problem scenario:
    1. The user goes to page P and picks project X off the list. Project X's stuff is displayed (G_PROJECT = X).
    2. The user then picks project Y off the list. Project Y's stuff is displayed (G_PROJECT = Y).
    3. The user then clicks the browser's Back button. The page is served from browser cache, so project X's stuff is displayed, but G_PROJECT still = Y.
    4. The user clicks an 'Edit' button; we submit, and branch to an edit page which displays (and will edit) data for project Y because G_PROJECT still = Y.
    This is SERIOUSLY BAD NEWS - apart from being confusing, the user's edit permissions on projects X and Y may differ, and so the user may be able to perform 'illegal' updates.
    I've read what I can on this forum and the rest of the web looking for ways to a) inhibit browsers' 'Back' functions and/or b) prevent pages being cached by the browser, but none of them have worked for me.
    Short of waiting for browser manufacturers to recognise that the web is now full of applications as well as static pages, and enable robust programmatic control of cache behaviour, does anybody know how the problem can be avoided - or at least detected?
    Thanks,
    jd
    Failed attempts to date:
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="cache-control" content="no-store">
    <meta http-equiv="cache-control" content="private">
    <meta http-equiv="cache-control" content="max-age=0, must-revalidate">
    <meta http-equiv="expires" content="Wed, 09 Aug 2000 01:01:01 GMT">
    <meta http-equiv="pragma" content="no-cache">
    Disallowing duplicate submission (page attribute).
    window.history.go(1);

    Thanks Scott,
    I may be being dumb here but I don't see how that would help...
    P250_PROJECT and G_PROJECT are currently kept in sync by app logic. Whichever is used to drive, if the page is rendered from cache then the app logic is not executed, so the rendered page contents are not those keyed by P250_PROJECT, as illustrated in steps 1-4 of the problem above.
    The user sees X, the session items say Y. The engine doesn't know what the user is seeing.
    when page P is POSTed, its hidden item P250_PROJECT should always be used to derive the application item G_PROJECT. Then whether the page was pulled from cache or rendered anew via a click from the sidebar link, the project ID is determined by the contents of that page.
    As I said above I tried this, with the 'Edit' branch set to:
    Set these items: G_PROJECT
    With these values: &P250_PROJECT.
    but it makes no difference. The project ID is not determined by the rendered page contents - the engine gets the value of P250_PROJECT from session state.
    I can code the 'Edit' pages such that they check permissions and if necessary redirect back to p250 (conditional before-header branch), but that's a clunky cure rather than the prevention I was hoping for.
    Please tell me if my understanding is incorrect.
    jd

  • In PS module transaction CJ40 after detail planning back button throws out

    In CJ40 primary cost planning we come back to annual view by clicking back button now if i press back button system throws out from transaction CJ40 . rather to come back to element overview screen. Anybody can give me solution for this as the user suffer most during the cost planning of project having more than 100 WBS. if by mistake he click button in middle of his work . all his work lost and he has to do it again it should ask for saving or not . please give me solution
    Edited by: shab396 on Mar 9, 2011 6:07 PM

    Hello,
    Are you uploading the data manually through transaction code?
    It is better if you create a program to manage planning data and upload the data at one go. You will save a lot of time.
    You can use FM 'KBPP_EXTERN_UPDATE_CO' for CJ40.
    You can also go for BDC recording but if there is a FM or a BAPI available for it then better is to use FM/BAPI.
    Hope this helps.
    Regards,
    Saba

  • DVDSP3 Won't Make New Buttons, Won't Open Project Files

    HELP!!!!
    The button editor in my DVDSP 3.02 stopped working after it opens a new project file. I mean, when you go to a menu and then hold down the mouse button and drag, nothing happens. It will not create any new buttons. Even if you drag a button template over and use the pop-up submenu. It will not create any buttons.
    Worse is what happens when I open an existing project file. Then it stalls forever at the "Loading Menus" point in the "Loading Project" dialog. It doesn't crash, it just stalls there forever. However, if I click "cancel" - THEN the app crashes.
    But it won't make buttons in the new project files it can open, and it won't open any existing project files. Very confusing.
    Here's what I know and have done to this point...
    If I watch this whole process in the Activity Monitor, here's what I see. I find that two apps named "DSPX_AEncoderServer" and "DSPX_EncoderServer" get hung (and turn red) when the "Loading menus" point is reached in the document load. Sometimes DVDSP will say it's hung, too, but not always.
    However, I found that my DVDSP app still runs flawlessly if I boot from my "clone" backup drive, which is how I'm still able to get work done currently.
    Back on my normal boot drive, all of the other Apple Pro apps still run perfectly - FCP, Compressor, A-Pack, etc. But not DVDSP.
    OK, here's a clue, but I don't know what it means. Two months ago, I had the logic board replaced on my G4. All the pro apps made me re-register. Then this DVDSP problem appeared out of the blue. Nothing fixed it that I could find. What made it finally go away was the timely arrival of a new Security Update to the OS via "Software Update." Installing that made the problem with DVDSP go away, for good.
    Not doing hard drive maintenance, repairing privleges, fully optimizing OS, Disk Warrrior, Norton DiskDoctor - none of them worked. But that Security Update showing up, installing, and then doing the post-install optimize fixed the problem. That time. Or maybe it didn't? Because...
    Two weeks ago the FW ports on the "new" logic board blew, just like the original, so AppleCare gave me a third logic board.
    Same deal as before with all the pro apps wanting to re-register because they are seeing a different serial number in firmware.
    Also, just like before, I have this trouble with DVDSP. But I can't fix it this time.
    In the past three days (two of which were really one "large" day with no sleep period in between) here's what I have done in an attempt to fix this, without success.
    I dumped the receipts for the DVDSP v3 installs and upgrades, then I reinstalled the DVDSP components from my original disc, and then reinstalled the online 3.02 upgrade. No go.
    I did all of the above, except this time I found an Apple TechNote on deinstalling DVDSP v2. So using that as a guide I did my best to delete the app and all its supporting files, as well as the install receipts, before doing a fresh install of the app and the v3.02 upgrade. No go.
    I did a plethora of hard drive and system maintenance thinking that perhaps some files had been misplaced, a hard drive directory corrupted, a bundle bit here or there un-set, a few system libraries de-optimized, various font and system caches corrupted, as well as numerous log files too filled up with "essential" data to run correctly therefore in need of deletion.
    Along with anything else I could think of based on my 20+ years of supporting Macs in a production environment. Again, no go.
    So I deleted all the DVDSP files and receipts from my boot drive again. Then I dumped all the install receipts for OS 10.3.9 and ran the "combo" version installer for that OS upgrade. Next I dumped the receipts for the Security Updates and reinstalled those. Then I did drive maintenance, OS permission fixing and optimizing. Then reinstalled DVDSP and friends. Still no go.
    But my version of the app that is on my backup hard drive that I cloned right before taking the Mac to the shop for the 3rd logic board still runs just fine. I boot off that drive (connected via Firewire) and DVDSP will run fine.
    I'm confused.
    Now I'm not inclined to spend a lot more time on this since my DVDSP 4 upgrade is due for delivery any day now, and I'm sure that will work OK. Especially since I'm planning on moving to Tiger at that point, too.
    But in the meantime, it sure would be nice to know what happened to my "regular" copy of DVDSP.
    Can anyone figure this out, or at least give me some new ideas on now to troubleshoot this?
    Apple Support refuses to help me because I'm still using an "unsupported" version of DVDSP. Even though I'm still using it because my purchased upgrade is being delivered via "media mail" - the US Postal Service's version of the proverbial "Slow Boat."
    That was a difficult and frustrating conversation withthe Apple Support rep, too, let me tell you. I've been a fan, user, customer, supporter, and evangelist for Apple hardware and software since 1984. But when that voice on the other end of the phone essentially told me that...
    a) if I was not using the latest and greatest version of the software, AND...
    b) if I was not willing to spend several hundred dollars each year on support fees...
    ...then I was basically on my own and they would not help me. Worse, they didn't care that I was an old and loyal customer, or that I was even a stockholder in the company. The support system essentially told me to get stuffed. Yee-e-e-ow!!!!
    I was especially mad about this because I have this nagging suspicion that this whole problem I'm having with DVDSP is somehow related to some kind of copy protection scheme that Apple has going on but doesn't talk about.
    I mean why did I need to re-enter the serial numbers for all my pro apps when I changed logic boards? Is my problem being caused by some Pro App component that knows enough to stop working when it thinks it's been bootlegged, but doesn't know enough to trigger a re-registration of itself.
    At this point, that idea is beginning to sound more and more plausible as the cause of my trouble.
    Anyway, this problem is seriously hurting my workflow. I'm out of ideas and I need some guidance from the collected wisdom of the forum to solve this problem.
    Thanks in advance.

    I didn't see anywhere that you had downloaded and
    installed the latest proApplication Support file. If
    you haven't, you should do this next:
    http://www.apple.com/support/downloads/proapplications
    upport31macosx1039.html
    Hal:
    I had reinstalled that ProApps Support version, but I hadn't done it since I deleted all the app files and such, then done a complete reinstall from the DVD.
    So I just downloaded it afresh, and then installed it. Then I restarted, and then repaired permissions with Disk Utility.
    Still no go.
    I'm bamboozled. I thought I knew something about this stuff, but I guess it's good to stay humble.
    However, my 5.1 studio upgrade just arrived in today's mail. I think I'm going to take a chance. I'm between projects right now. So I'm going to upgrade my OS to Tiger>then 10.4.6 upd. Then I'll take a shot at installing the new FCP Studio upgrade and see what happens.
    Any comments or advice? Otherwise, wish me luck. I'll let you know how this works out with a post here.
    Sure wish I could figure out what's going on with my DVDSP v3, though. I really HATE to leave unresolved problems hanging out there. Seems like they always come back to bite you again if you don't deal with them.
    Thanks for the help.

  • How can i create forward and back buttons for a dreamweaver slideshow?

    Hi
    I am an illustrator attempting to create a website in dreamweaver (basically it will be an online portfolio). I would like to have a box/slideshow with images of my work that someone can browse through by clicking 'next' and 'back' buttons. Does anyone know how to do this? I have been trying to find out how to do this for ages - i dont want to use flash if possible as i am worried about making the site too complicated. I know how to make swap image thumbnails, but i think my site would be more user friendly (and look more professional) if i could have next and back buttons. Would this involve complicated css code (which scares the life out of me!) or is there a relatively easy way to do it? I have got two 'dreamweaver for idiots' books, but neither of them cover this topic. Can anyone help?

    If you are using CS4, there is a Command to create a Web Album... this does it automatically for you.
    Otherwise, you can create this manually.  Say you have 3 pages,
    page1.html  (is the index page of the album)
    page2.html
    page3.html
    Therefore, using ordinary text links
    Home would link to page1.html
    Previous would link to page3.html
    Next would link to page2.html
    You would need to make adjustments naturally to each page as you move along with the gallery pages, changing the previous and the next links as needed.  Below is a a basic example of setting up the links in a simple table structure.  You would also then style the table layout as you see fit - yes, using css preferably  :-)
    <table>
    <tr>
    <td><h2>MY GALLERY OF PHOTOS</h2>
    <a href="page3.html">Previous</a> | <a href="index.html">Home</a> | <a href="page2.html">Next</a>
    </td>
    </tr>
    <tr>
    <td>
    <br>
    <a href="../images/img_2401_jpg.jpg"><img src="../images/img_2401_jpg.jpg" border=0></a><br>
    </td>
    </tr>
    </table>
    Here's an article on creating an album using the DW Command I mentioned earlier. You could create the album and then copy and paste the code into a current page if you've already designed on.,... not too difficult, I just tested it.  You do however, need to have Fireworks to process the images.
    http://livedocs.adobe.com/en_US/Dreamweaver/9.0/help.html?content=WSc78c5058ca073340dcda91 10b1f693f21-7ad1.html
    You could also check out the Lightbox effect which is very popular:
    http://www.lokeshdhakar.com/projects/lightbox2/
    Or do a google search for 'jquery'.  There are different album effects using that framework as well.
    Hope some of this helps  :-)
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    Book: Ultimate CSS Reference
    http://www.sitepoint.com/launch/005dfd4/3/133
    http://twitter.com/nadiap

Maybe you are looking for

  • Can BPm pick up existing process from ECC without human intervention

    Hi Is there any way BPM can read/pick the existing process from ECC system (may be solution manager workflow) and model the same. Just trying to make sure from experts that it is not possible before replying client. Lavanya Edited by: Lavanya Sambara

  • My photosmart D5360 is not printing label to cd

    My photosmart D5360 is not printing label to cd, please reveal pos causes. printing to main tray is no problem

  • How to incorporate live tiles into a Project Siena app (kinda)

    Hi guys, I have been playing around with getting some live tiles into my project siena app (Astronomy Action Centre), and at last I have managed it. What I did was as follows Publish your app as normal and import it into Visual Studio When you have i

  • WPA enterprise (need to not validate Certificate)

    We currently use WPA Enterprise and we require the network to be configed manually to get it to work on a windows 7 pc. We have to create the Wireless as so: Network name: XYZ Security: WPA-Enterprise Encrypton type: TKIP Under Properties for network

  • How to stop a listener?

    hello, i'm working on a small school project, i'm experimenting a little with listeners and I wanted to know if it was possible to exit a listener? as soon as i start draging, i want to execute the commando "jPanel1.add(com)" and right after that i w