Showing posts with label JQuery. Show all posts
Showing posts with label JQuery. Show all posts

Thursday, November 4, 2010

jQuery Gallery Plugin

Please find the following gallery slideshow:

http://devkick.com/lab/galleria/demo_01.htm
http://galleria.aino.se/media/galleria/src/themes/fullscreen/fullscreen-demo.html
http://galleria.aino.se/
http://sandbox.leigeber.com/slideshow/

http://tobia.github.com/CrossSlide/

Sunday, July 5, 2009

jQuery modal plugin

I have tried to use different jQuery modal plugin to finish my job these days.
What I want is add a half-transparent overlay to the background and popup a dialog box to ask some questions.
Some plugins are too complex, hard to use or buggy:
Thickbox - cannot retain the radiobutton or checkbox answer in IE6,7 after closing the dialog.
BlockUI - hard to make the position right

And I finally use the jqmodal plugin (very easy to use):
http://dev.iceburg.net/jquery/jqModal/

Thursday, July 2, 2009

jQuery issue

I have to do a survey that will dim the bg and popup a box to ask questions.

I use thickbox to do the effect, but to match the ui, I have to edit the js and css to remove the padding.

Problem:
"nested form element" which occurs in dynamic page so that I cannot append item and serialize the form correctly.

Solution:
Use a temp. form to solve the problem:
$("<form></form>").append($("#form_inside")).serialize()