jquery-plugins

jQuery qTip IE Resize Issue

I am using qTip (jquery.qtip-1.0.0-rc3.min) and jQuery (jquery-1.3.2). When using qTip in IE with non-dynamically loaded content qTip works fine. However, when loading content via an ajax call the qTip content does not resize once content is loaded. I have tried adding an updateWidth on the various callbacks without any luck. In fact, w...

jQuery. How to sort with multiple value pairs with "tinySort"?

Hi there, I'm really not a JavaScript genius or anything so please bare with me. I am using a jQuery plugin called "tinySort" that allows you to sort items for example in an unordered list (it's rather nice!). Doing so, you simply call the following code: $("ul#list > li").tsort("a[title]",{orderby:"title",order:"asc"}); This code s...

jQuery UI: Datepicker month format.

I'm trying to change the format of the month that displays in the popup (not in the date that the picker actually returns. I can't find any option anywhere to do this, is there a hack like using substring() or something? I'm trying to change what's normally displayed as: <div class="ui-datepicker-title"> <span class="ui-datepicker-...

Is there a jQuery plugin to select user emails into a text field? Like Facebook..

I am looking for something similar to Facebook massage "To" field. ExtJS has very nice UI component called Ext.ux.BoxSelect. Is there anything similar for jQuery? ...

Jquery autocomplete with jquery 1.4

Hello everybody, Referring to this post and this one. I'm trying to implement tag search for my blog/website something similar to SO tag system using jquery autocomplete plugin, I'm using jquery 1.4 latest version so I'm not sure whether it works with it or not, I've used this plugin before once. So without further jibr-jabr here is my ...

Autocomplete with jquery and codeigniter php MVC

Hello everybody, I'm trying to build an autocomplete using jquery plugin autocomplete from this site. Now I managed to achieve autocomplete using local results pre-loaded into website as a part of document ready function, its quite easy doing it localy. Here is with what I struggle with, pulling results from php file. Here is how I tr...

Can you recommend a good jQuery type ahead plugin?

I just searched for jQuery type ahead plugins, but none of them really looked to be very good. Can anyone recommend a good type ahead plugin? I just need a textbox that shows email addresses from our DB as users type in said textbox. Should I just roll my own? ...

jQuery External RSS Feed Parser?

I've been looking around for a decent jQuery feed/XML parser and found good plugins like jFeed and jParse (among a few others). None of these support retrieving an external feed though, which is something I'm after. Pretty sure this is down to jQuery's $.ajax() method rather than the plugins themselves (as they'll be built from this). ...

Codeigniter and jQuery css switcher

hello, I have been following a tutorial on creating a style switcher with PHP and jQuery, now in the tutorial the PHP function uses get data, which is not available in codeigniter, I was hoping someone would be able to help me tidy up my sorry attempt? My PHP function function setBackground() { $style = $this->uri->segment(3)...

Animate PNGs with jQuery?

Is there a simple plugin or some robust code that would allow me to animate PNGs with a simple start and stop method? TSM, Alex. [Edit: I made a jQuery plugin that animates PNGs. Will post when it's all done.] ...

JQuery Form Validation Not working on newly created elements

Hi there Am having a few issues with the Jquery Validation plug in, and wondering if anyone can assist. At the moment, the plug in works with any form elements currently on the page $("#addRelease").validate({ submitHandler: function(form) { form.submit(); } }); However if I dynamically create a form on a butto...

How to enable Jquery form validation function to be executed/fired before other functions?

I use Jquery form validation to validate form input data. There is a confirm check on submit of this form. . The code is: <script type="text/javascript"> function Confirmation(){ var answer = confirm("Do you really want to withdraw this amount of money from your account?") if (answer){ return true; ...

Javascript image zoom (JQuery)

I go throw the questions here and search the web for image zoom. I found one really nice: http://www.php-help.ro/examples/mootools1.2_image_zoom/ , the problem is that I'm not using MooTools and I can't use it. To find anything similar in pure Javascript or JQuery will be great. The requirement is that the zoomed are can be moved on th...

Using JQuery Validation Plugin

I was wondering if someone could help me using the JQuery validation plugin. I need to add the ability to make sure that a field only contains letters, numbers, underscores, whitespacke, and dashes. I currently have the following js code (not including the call to jquery and the plugin .js files) $(document).ready(function() { $("#inf...

jquery - Fancybox - Popup window doesn't "pop"

I am trying to use jQuery Fancybox to popup a youtube video from a website. I have followed the instructions from the fancybox.net site, but no joy, the video simply appears inline. I have all the .js files in place, the .css file in place, but as you can see here: http://www.rouviere.com/~idp2/ideaPeople.html clicking on the image only...

jQuery: check for hover state in jQuery.notice

I'm trying to add functionality to the jQuery.notice.js plugin written by Tim Benniks. (http://code.google.com/p/jquery-notice/) I want to pause the noticeRemove() function if you're hovering over the .notice-item . Here's the function: noticeRemove: function(obj){ obj.animate({opacity: '0'}, 600, function(){ obj.parent().a...

jQuery Validate Plugin: How can I add groups to a validator after its been initialized?

On our site we are using an embedded sign-up form from our ESP that uses the jQuery validate plugin. We are customizing the form a bit, adding a couple of custom fields (first name, last name) and we want them to be grouped so there is only one error message for both the fields. Since the form's validator has already been initialized I ...

Jquery plugin help...need to add my own functionality

Hi Everyone, I am trying to add my own functionality to a jQuery plugin and to be honest it is not going well, I am using the easySlider 1.7 from here My idea is to use the paginated version, there is an example on the linked site above, but instead pausing when the user clicks on one the numbered links, I want it to skip to that sli...

How to let the user chose output markup in jQuery plugin development

I develop a jQuery plugin which produces HTML output, currently something like <ul> <li><img></img></li> ... </ul> But actually, I would like to let the user of my plugin chose the HTML markup which gets generated, so for instance he passes a template string from which my plugin produces the output. But I don't know how. Are ther...

colorbox resize

In reference to another question I found : http://stackoverflow.com/questions/1060687/how-can-i-dynamically-resize-the-jquery-colorbox-plugin If I wanted to resize the colorbox inside of a callback, how would I call it? Also, would it be possible disable scrolling until the resize was complete, then enable it? $("a[rel='colorbox']"...