jquery-plugins

why qTip doesn't work for li

Hello all, I have tried to use qTip to show tooltip for li and I have found problems as follows: <html> <head><title>error</title> <body> <ul> <li title="Coffee">Coffee</li> <li title="Tea">Tea</li> <li title="Milk">Milk</li> </ul> <a href="" title="a1">a1 tooltip</a> <script type="text/javascript" src="jquery-qtip-1.0.0-rc30...

jquery scroller plugin

I'm making a scroller plugin n i'm using setInterval function for continous scrolling and i wana know that can we call setInterval function in jquery with some object ...

Is there a jQuery plugin that combines lightbox and slideshow (Google Buzz-style)?

When you click on an image in Google Buzz, it shows this image in a lightbox, but at the bottom of the screen there is a list of all images in the same context (and you can click or scroll through it). I want to use the same functionality in my gallery, but I prefer not to spend a lot of time building it. Is there a plugin that provide...

Getting Superfish jQuery plugin to work dynamically with several loops in PHP

Hi there, Hopefully some clever lad or ladette can help me figure out the logic for the follwoing code. I have started to use superfish jquery plugin for my navigation and have got the code working fine and easily with static links, but when I try to change that to dynamic links I am having trouble getting the 2nd level tag to work pr...

jQuery imgAreaSelect hide/show?

I've been trying to hide and show the imgAreaSelect selection box depending on whether a checkbox is checked or not. I've tried: var ias = $('#photo').imgAreaSelect({ instance: true }); ias.setOptions({ show: false }); but it doesn't seem to do anything. I have had to resort to: $('div.imgareaselect-selection').hide(); ...

Show Off - Beautiful programmed jQuery Plugins

Hi There, besides jQuery, jQuery UI and jQuery Mobile - What are you choices for beautiful programmed jQuery Plugins. I'm currently developing my first plugin and try to learn from the best :-) Thanks a lot ...

jQuery Execute Order

I'm using the following jQuery plugin and it executes when there's a click action on the specified element : http://www.andresvidal.com/labs/relcopy.html I also created a click function for the same element, but I expected it to execute after the plugin. However that isn't the case, the click function always executes first, thus causin...

Where to download Jquery GalleryView New Version? I cant find it!

Very simple question! ha? I can't download the latest version of GalleryView plugin.I have version 1.1 but it is so old. the plugin page in jquery website: http://plugins.jquery.com/project/galleryview and the plugin homepage is here: http://spaceforaname.com/galleryview ...

jQuery plugin for datatables

I am working on a datatable which is not very big and I need to implement the following UI Draggable Columns Resizable Columns UI has to have memory across sessions. I have gone through the list of jQuery plugins for datatables and I am not really satisfied with what I was getting. Things like flexigrid and others with YUI or EXTJS ...

jQuery Appending Attribute to Elements That Contain The Specified Text Node

For example, I would like to append selected="selected" to the option that contains This one, which jQuery selector should be used to append attributes into that element? <select> <option>Not this</option> <option>This one</option> </select> Thanks in advance! ...

How to renew a text input value in a js var in jquery

Hello, I have a jquery + plugin Boxy + form input mess. That´s the situation: 1 - when I press a link, a form with only a text input and a submit button appears in a popup. 2- When I write some text and press the submit button, I get the text input value in a js var, and send it by ajax to a PHP function that performs a operation a ...

How to override the error message parameter in a JQuery validator parameters variable?

I am using this method to add a method to the JQuery validator. I'd like to know how to modify the parameters variable to change the error message. Has anyone done this? (function ($) { $.validator.addMethod('requiredwhencontains', function (value, element, parameters) { var id = '#' + parameters['dependentProperty']; ...

JQuery table sorting; problem with dynamically added rows

I am using a jquery tablesorter plugin(http://tablesorter.com/docs/) for sorting my tables. This works for rows that created already. But when I add a row dynamically with Jquery clone() method, sorting is not working. What I should I do to sort rows even if I add a row dynamically? ...

Set Length to Rich Text Editor in Jquery

Hi All we are facing an issue in RTE in jquery.if i entered more than 100,000 char in RTE then error occurred. I am using MySql in backend and the feild datatype with TEXT which is unlimited. So now we have decided to fix length in RTE.So please let me know the way to fix length in RTE in jquery. Please see the following code. $("#...

jQuery Prev() Question

Sorry guys, I should have posted the script directly without cleaning it. Please check the updated script, it should now clear things up. Thanks! Consider the following JavaScript : var selected = 0; var options = 0; $('.newListSelected').each(function() { selected = $(this).children('.selectedTxt'); selec...

Where to download the "jquery.mediaqueries.js"?

Sorry for this stupid question, but I am not able to find this library anywhere. There is no download option in the jquery site: http://plugins.jquery.com/project/MediaQueries Can anybody share me the link to download the "jquery.mediaqueries.js" library OR send me this library? Many Thanks, ...

CSS media queries support in IE browser

Please help me how can I use the media queries for IE browser? I have come across one jquery library: http://plugins.jquery.com/project/MediaQueries but I am unable to download this library. ...

jQuery image scrolling script

Is there any jQuery image scroller script similar to this one http://www.eogallery.com/ . Like a carousel view, which show small thumbs in the side and big one in center. Eogallery is good but I need the three images to be scrolled at once not one by one. ...

Jgrid Problem Generating XML

Hi, i am using Jgrid. i am injecting the data to the Grid using Xml as we most of us do. i want the batch update to database, my requirement that when i click on the "Save Change" it generate the Xml of current(updated) grid data. So, how can i generate the Xml of Jgrid data. please help. here is the code. <!DOCTYPE html PUBLIC "-/...

Jquery Detecting a Pause

Hi guys, I'm using jQuery and the cycle plugin to simply rotate some images. On a mouse even I ask it to pause, $('.content-main-imgholder', this).cycle('pause'); My question is how can now detect if the cycle is paused? i.e. if( cycle = pause ) { //do something } Thanks in advance for your help. ...