I don't work with sortables much. Demo here has sortables within tabs. Tabs are droppables and over event triggers hovered tab to open. This trigger works using jquery 1.6.3 but not 1.7 which I can live with.
With new tab displayed user can then continue dragging the sortable into it's allowed element within new tab. This really didn't work well without using page offset for hidden tab content as placeholder kept getting width set to 0px.
System works OK but gets a little buggy when it's original page position corresponds with position in new tab. It also seems to take several over and outs to get placeholder to show on new tab sometimes
Am trying to figure out any method to force or refresh the placeholder to recognize it's position is not the same as on new tab.
Has there been a shift lately in browser functionality to maintain page state in history and/or pause recurring scripts on new browser tab focus?
Seeing issues pop up ( in forum ) with slideshows for example that start acting strange when user switches browser tab and returns.
Also seeing it on things like hover flyout menus that used to close on their own if a new page( different url) was opened and browser back button was used to return to page with menu.
Now see hovered items staying open ( at least in FF 5 & 6 and I think in 4 also) when return to same page.
Maybe this is a FF issue, but seems to be a recurring issue in forum questions also.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body bgcolor="#ffffff" text="#000066"> Put together a Cycle show with multiple effects triggered with onBefore and onAfter including sliding text over images and a sliding highlighter over pager thumbs. Pause onHover is true. All works great if I use "click" event on pager, however customer wants to use hover on pager. Trying to figure out a way ( like a hoverintent) to stop the queing of effects on multiple hovers of pager I see methods in plugin functions used to stop on various events but can't figure out how to apply them in this situation Slideshow: <a class="moz-txt-link-freetext" href="http://www.teprod.com/">http://www.teprod.com/</a> Js : <a class="moz-txt-link-freetext" href="http://www.teprod.com/wp-content/themes/TracyEvans/js/home_slideshow.js">http://www.teprod.com/wp-content/themes/TracyEvans/js/home_slideshow.js</a> </body> </html>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body bgcolor="#ffffff" text="#000066"> Following getJSON works fine but I need to replace "presentations with a variable "getSlides" tried a lot of different ways with a variety of errors no matter what I've treid var getSlides = $(this).attr("href"); $.getJSON("photoList.js", function(slides){ $.each(slides.<font color="#cc0000">presentations,</font> function(i,item){ $("<img/>").attr("src", item.photo).appendTo("#slideshow");
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body bgcolor="#ffffff" text="#000066"> Having problem with "after" option function firing *immediately* after the "before" function but only on initialization. Have tried updated versions on Github, tried older versions from Git and can't find one that doesn't do this Set up following test page to print time when "before" and "after" fire. Get a print each and every time, right after "before" on first slide, then it fires properly after that in proper sequence. Speed is set 3000, timeout set 2000 ( "after" doesn't seem to wait for timeout either) <a class="moz-txt-link-freetext" href="http://www.getnoticedinternet.com/test/cycleDemos/afterTest.html">http://www.getnoticedinternet.com/test/cycleDemos/afterTest.html</a> </body> </html>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body bgcolor="#ffffff" text="#000066"> using jQGRid version 3.4.4 I have jQGrid working great with several thousand records, bottom toolbar search, add , delete etc are working fine in all columns. I installed the top toolbar search bar using .filtergrid and it is sending ajax only when I hit enter key, not autocomplete style as in examples. The post isn't sending "searchField", "searchOper" or "searchString" the way it does with navgrid search method<font face="Trebuchet MS"> </font>filtergrid is using the default options set in grid.custom.js as well as {gridModel:true,gridToolbar:true} exactly the same as demo. Anyone have any experience with this method? <font face="Trebuchet MS"> </font> </body> </html>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body bgcolor="#ffffff" text="#000066"> Working on app with theme roller, did a few minor UI css over rides in separate file ( minor padding etc to suit my needs). Once i put it together I tried themeswitcher. Themeswitcher introduces ajax loaded UI css file however it seems to take "last in" control and the over rides I did are now second inline to the default of the UI css. Before turning on themeswitcher these over rides were in correct order. I even tried placing a few of the over rides in style tag right before <body>. Is there a method to tell themeswitcher css to not be the last css in the loading order or is the only solution to take the over rides out of css and script them into jQuery? Have never tried loading a css file with script, maybe that's what's needed, load the over rides after themeswitch?<font face="Trebuchet MS"> </font>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body bgcolor="#ffffff" text="#000066"> <font face="Trebuchet MS"><font face="Arial"><small>have about 150 html tables ( all same format, headings etc). Trying to assign ID's based on fact they all carry appropriate name in same td index in table. not heavily versed in JS and closest I've come is $("table").each(function(i){ var country_name= $("this tr:eq(1) td:eq(1) ").html(); this.id = country_name +this.id + i; }); I can get the country_name to write to an alert however am having trouble getting it to work with index. Tried a variety of things ( swap html() fo rval(), tried $.merge etc my outputs to the ID's are working but I either get "undefined with index# or put various bracket on the var and it come out as text instead of it's value I don't have the server side experience to do this through php/sql etc and am really close now with it any help greatly appreciated </small> </font></font> </body> </html>