I am setting up JQM for the first time for an internal business app and having an issue with page refresh. I have a page that grabs a still from a webcam when the page is loaded so the page has to refresh every time its loaded or the web cam images will be stale. If I use a link like in #1 the page refreshes normally and reloads the images but I don't get the fancy effects with page transitions. If I remove rel=external if does not refresh the page and the images are not reloaded. I am using server side code to grab the images and its obviously not being ran. I have tried adding meta info so the page isn't cached and it doesn't help. having the link like below works but it definitely looses some of the JQM polish. The pages I am loading are all dynamic pages and all have to be as current as possible, and I would prefer to keep them as seperate pages and not roll into one. Any help is greatly appreciated.
<a data-role="button" rel="external" href="index.asp" > Home </a>
I am trying to use superfish plugin for navigation and its working great in every browser except IE6. When the menu scrolls down to far, every browser expands the current page as needed to accomodate the menu, IE6 does not and the menu is off the page, below whats accessible.
Is it possible to correct that behavior? Let me now what other information you need from me. below is my menu
<ul> <% sql = "select * from type order by name" set rstype = conn.execute(sql) do while not rstype.eof %> <li class="winesearch_level2" style="background:white;"> <a href="searchpage.asp?type=<%=rstype("id")%>"><%=rstype("name")%></a> </li> <% rstype.movenext loop set rstype = nothing %> </ul> </li> <li> <a href="search_all.asp">Style</a> <ul> <% sql = "select * from style order by name" set rsstyle = conn.execute(sql) do while not rsstyle.eof %> <li class="winesearch_level2" style="background:white;"> <a href="search.asp?style=<%=rsstyle("id")%>"><%=rsstyle("name")%></a> </li> <% rsstyle.movenext loop set rsstyle = nothing %> </ul> </li>
<li> <a href="search_all.asp">Food Pairings</a> <ul> <% sql = "select * from food_type order by name" set rspairing = conn.execute(sql) do while not rspairing.eof food_typeid = rspairing("name") %> <li class="winesearch_level2" style="background:white;"> <a href="#"><%=rspairing("name")%></a> <ul> <% sql = "select pairing.id as pairing_id, pairing.name as pairing_name, pairing.food_type,food_type.id as food_type_id, food_type.name as food_type_name" sql = sql & " from pairing" sql = sql & " inner join food_type" sql = sql & " on pairing.food_type=food_type.id" sql = sql & " where food_type.name='" & food_typeid & "'" sql = sql & " order by pairing_name" set rsfoodtype = conn.execute(sql) do while not rsfoodtype.eof %> <li class="winesearch_level2" style="background:white;"> <a href="search_food.asp?pairings=<%=rsfoodtype("pairing_id")%>"><%=rsfoodtype("pairing_name")%></a> </li> <% rsfoodtype.movenext loop set rsfoodtype = nothing %> </ul> </li> <% rspairing.movenext loop set rspairing = nothing %> </ul> </li> </ul> </div>