Update content without page refresh?

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Update content without page refresh?

    I'm not sure this can be done without javascript but it doesn't hurt to ask. I
    want to be able to update content on a non-frames page within a table, without
    reloading the page. Example: On a product page for a T-shirt, there would be
    an area on the page with a drop-down menu to select the size. Once size has
    been selected another menu appears to select the color, etc... without
    reloading the page after each choice selection. Amazon.com uses javascript to
    do this but I'd like to stick to CFML as much as possible. Am I wasting my
    time? Thanks in advance, Scott

    senelson1 Guest

  2. Similar Questions and Discussions

    1. PDF Content Update
      Please ignore my ignorance, but I've just started to look at developing with Adobe and am not having much luck so far. What I'm currently looking...
    2. XML content does not refresh
      I have a Flash movie wich displays information from some xml files. Whenever I upload changes in the xml files, it is not displayed in the Flash...
    3. Dynamic Content, Refresh on each page load
      Is it possible to have a piece of content that will refresh automatically on every single page load, no matter what browser or settings you have? I...
    4. datagrid content not refresh ?? Urgent..
      Hi, i run the web page with the datagrid and update the datagrid content especially the image field. after updating the image will change to the...
    5. How to update the content of an HTML page in ASP .Net
      Hi everyone, I have the following HTML code and I like to change the value of REFRESH content from 2 to something else at runtime. Any...
  3. #2

    Default Re: Update content without page refresh?

    CF is a server side scripting language, so the only way for CF to do anything
    is to pass information from the browser back to the server. That, of course,
    constitutes a reload. To modify the data on the page without reloading, you
    will need to use a client side language. The Javascript for what you want to
    do is actually not all that complicated, so you may want to try doing a google
    search and see what you come up with.

    Nicholas_Bostaph Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139