jquery-plugins

Jquery Cluetip - clean up between ajax loaded content

Hi, I'm using the jquery cluetip plugin and trying to figure out how to remove any open cluetip dialogs once i load new content via ajax. I am either stuck with the dialog boxes still showing on top of new content, or the ways i've tried to fix this actually remove all future cluetip dialogs from showing at all. Here's my code, thanks ...

JQuery Internals Documentation

Is there any documentation available that explains the internals of JQuery and JQuery UI? I have been looking through the source code, and while much of it makes sense, I was still hoping for an overview/walkthrough of the source code to help speed up my learning process. I'm not looking for general documentation of how to use JQue...

Colorbox make the light box fixed when scrolling.

hi, I working with jquery colorbox. When the page content is big and colorbox is opened. Then the color box scrolled along with the page content. I want the colorbox need to be fixed even the background content scrolls. Please help me out to fix this issue. ...

jQuery jFlow plugin. How can I have more than one on a single page?

Hi, I'm using a very lovely and simple plugin called jFlow that gives me a basic content slider etc. However, I can see no documentation or help on how to get two (or more) on one page at the same time working seperately from one another. At the moment, if I set two up, they almost combine as one, despite having a different configurat...

jQuery: ajax polling plugin alternative (instead of PeriodicalUpdater?)

Hi, I'm trying to poll a script every few seconds. The script will return a timestamp, and if this timestamp is different from the previous (the first time is always true since it's comparing with nothing), then do something. Thing is PeriodicalUpdater seems to work fine for me. But I read that JSON.parse does not work in IE<8. I'm the...

jquery: call functions immediately after plugin

I'm sure that there's an easy answer to this, but I can't find it. I have a table 'myTable' which I stripe using the following $("#myTable tr:even").css({ "background-color": "#FEE996" }); $("#myTable tr:odd").css({ "background-color": "#FFEFAF" }); This works fine. I am also using a table filter plugin as follows $('#myTable').ta...

jQuery plugin options: required, optional, inaccessible

I'm curious how to specify options to a jQuery plugin in a way that some are required, some are optionally overridden, and some can't be touched. I started off with the usual: jQuery.fn.plugin = function (options){ var defaults = { username: "", posts:10, api: "http://myapi.com" } var settings = jQuery.extend({}, defaults, options...

jQuery Form plugin - no data from file upload?

I've been struggling a bit with the jQuery Form plugin. I want to create a file upload form that posts the data (JSON, from the chosen file) into a REST service exposed by a servlet. The URL for the POST is calculated from what the user chooses in a SELECT dropdown. When the upload is complete, I want to notify the user immediately, AJAX...

jquery plus minus sign on collaps and expand

hi I am using the code below. What I wanted is to have a + or - sign on expanded or collapsed view. How can I do that. Here is the code Thanks in advance! XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX <!--//---------------------------------+ // Developed by Roshan Bhattarai | // http://roshanbh.com.np | // Fell Free...

Add Checkbox column in flexigrid

The issue about jquery flexigrid using php. unfortunately http://flexigrid.info site is down very often so managed to take some sample code from http://sanderkorvemaker.nl/test/flexigrid/ and worked based on that. The above sample code works now I need to create a grid with a column with checkboxes, So that I can click a couple of tho...

using jqPrint to print div?

I'm using jqPrint to print data in my page. It is usefull, but when data has 2 page and more. I found problem, jqPrint print first page only(I found problem Firefox and IE8, not fount in Chrome). How to solve this problem? Thank for help Lohkaeo ...

qTip (jQuery plug-in) how can I remove all qtips in my page ?

hi, I'm using the jquery-plugin qTip. What's the command to destroy all tooltips in my page ? I tried: $('.option img[title], span.taxonomy-image-link-alter img[title]').qtip("destroy"); But it didn't work... Thanks ...

jQuery Autocomplete using extraParams to pass additional GET variables

I am referring specifically to the jQuery Autocomplete v1.1 plugin by Jörn Zaefferer [source: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/] as there seems to be quite a few variations of this plugin. I'm trying to pass additional parameters to the server when the user starts typing because I have multiple fields that...

jQuery, qTip: tooltips font-size: always the same

hi, I'm using qTip jquery-plugin for my tooltips. I cannot change the font-size of the tooltips. This is the code.. any number 2..4..8 produces the same results. $('.option img[title]').qtip({ style: { name: 'light', border: {width: 0}, title: { 'font-size': 2 } }, position: { corner: { ...

javascript namespace issue (I think)

Hi, I've been making a jQuery plugin for password boxes. It adds a generate password button and strength indicator to inputs that are passed to it via a jQuery selector. I'm having an issue with the code on lines 154 & 155 of jquery.password.js inputPassword.position().top. It's not returning the correct position of the input box, so t...

jQuery validation plugin , add custom method

Hi, I am trying to add a method that validate a field to see if it contains a number value. so this is what i did, however it is not doing the check for me. anyone has any idea? thanks $(document).ready(function() { $.validator.addMethod('positiveNumber', function(value) { return Number(value) > ...

jQuery loopedslider works in everything BUT firefox - help?

Hey see my link: http://www.zookacreative.com/xgraph/ I'm using nathan searles looped slider jQuery plugin and it works in everything but Firefox for some reason. And clue? ...

jquery-plugin columnizer: is it really so slow ?

hi, I'm using jquery-plugin columnizer http://welcome.totheinter.net/columnizer-jquery-plugin/ It is sometimes very slow to create the columns (you can try changing the browser window size, or selecting a filter. Sometimes Firefox gives the error message: "Unresponsive Javascript script" and I have to press on continue to continue the ...

Jquery UI Accordion and JQuery Grid plugin not going well together

I have used Jquery -UI accordion plugin for menu (since it looks neat) and Jquery -grid rails plugin for my data. I have a vertical menu and data on the right side, however the style of the menu disappears and only grid is showing up properly. Anyone faced this issue before ? ...

jQuery ajax form submit - how to ensure dynamically loaded form's action is used

Hi, i'm having a problem with dynamically loaded forms - instead of using the action attribute of the newly loaded form, my jquery code is still using the action attribute of the first form loaded. I have the following code: //generic ajax form handler - calls next page load on success $('input.next:not(#eligibility)').live("click",...