jquery-plugins

JQuery wait message dialogue

Hi all I'm looking for a jQuery plugin which works like the Ext.MessageBox.show(config) with the wait property set as true. It should be a modal dialog with a message and progressbar. I've done some search on this and found some widgets like jQuery UI imProgressBar Matt Berseth's but none of them provides the functionality like th...

Adding hoverIntent to jquery dropdown

Bit of a jquery Newbie here, so go easy. Basically I'm trying to plug hoverIntent into this dropdown menu: http://www.sooperthemes.com/open-source/jquery/jquery-sooperfish-dropdown-menus I've been stuck with this for a few days now, and I know it's probably very simple, but I can't seem to find the right selector to apply the intent f...

Appending dynamically generated html using jQuery does not play well with Fancybox

Hi folks. I'm using Fancybox (http://fancybox.net) to pop open an iFrame. In order to do so, I create a link with a class set to "item_pop" as so: <div id="events"> <a href="http://www.example.com" class="item_pop">My Link</a> </div> I then have some JavaScript in the footer that supports this: jQuery(".item_pop").fancybox({ ...

jQuery masked input plugin not working on smartphone

Hi, I have been using the masked input plugin for jQuery for a long time. http://digitalbush.com/projects/masked-input-plugin/ I never had any issues with the plugin until yesterday I got a support ticket regarding the plugin behaving erratically on the Driod phone. e.g. When the user tries to enter the phone number (123)345-9646 in ...

Jquery -assign linenumbers

how to assign line numbers for a textarea using jquery.the line numbers are suppose to appear on the lefyside of the textarea <textarea name='comments' id='comments' cols=10 rows=10></textarea> And the linenumbers and text should be inline with eachother ...

Issue with Google Translate and jShowOff

Dear all, I have been asked to look in to a issue that has occured on a website that is using both the Google Website Translator and the JQuery plugin jShowOff, a slideshow type plugin (both great features). The website is http://www.nic.coop and when you select another language to translate the website in to, it translates everything o...

jQuery Validation Plugin

I really was trying to avoid asking this question. I have seen quite a few posts on SO regarding this plugin but they still didn't quite get it for me. Right now I have a new account registration form and I'm trying to write a custom method for validating a unique username. I would like to think that the following should work: $.validat...

prettyPhoto Loading Photos in Reverse

For some reasons, unknown to me, prettyPhoto is loading images in reverse. It opens the last picture first and then as you can guess, you're given the option to see the previous photo all the way back to the first photo. I've setup prettyPhoto according to the documentation however I'm not getting the desired effect. Not sure what I'm do...

jQuery: Ajax firing only once even though binded with livequery()

OK, so, I use livequery() to bind a function to the click event of all links of class 'ajaxLink'. The function fires perfectly...once. After the first successful ajax call on a click, subsequent clicks don't fire the ajax, which means (I'm guessing) they aren't being bound by the livequery() code anymore. I saw where others who had a si...

Nested jQuery UI Tabs back button history

I'm using the jQuery Address plug-in to make my jQuery UI tabs bookmarkable and compliant to back button history. Works great. However, I was wondering if it was possible to do provide the same sort of 'deep linking' for nested tabs? E.g., I have the following: <div id="tabs"> <ul class="links"> <li><a href="#one">main tab one</a>...

JQuery scroller to load dynamic data via ajax

Currently I'm using a marquee html tag to scroll data within a div tag eg <marquee align="Top" direction="up" loop="-10" scrollamount="2" scrolldelay="100" style="height: 100px; padding-right: 5px;" onmouseover="this.stop()" onmouseout="this.start()" width="100%">DATA COMES HERE</marquee> What I want is the same effect only I want to d...

Nested JQuery Tabs

I've using the JQuery Address Plugin (http://www.asual.com/jquery/address/) to make my JQuery UI Tabs bookmarkable and compliant with the browser forward/back buttons. Works great. I was wondering if it was possible to do provide the same sort of deep linking for nested tabs? E.g., I have the following: <div id="tabs"> <ul class="...

jquery datepicker date default

hello can anyone tell me why datepicker submits the current date when a input field is empty? i need to have this field empty so if a user does not wish to enter a date, then no data is sent. is there a way to do that? many thanks ...

jQuery maphilight change color of fly

I'm using this plugin http://davidlynch.org/js/maphilight/docs/ But can't figure out, how to change color on fly. It uses metadata plugin, and does it via class directive, but changes don't apply on fly. e.g. class="{stroke:false,fillColor:'000000',fillOpacity:1,alwaysOn:true}" and now I want to change color: class="{stroke:false,f...

jquery plugin syntax identifier

Any jquery tool for code identifier.i.e,the plugin should identify the language keywords for c,c++.. ...

[jQuery] Sidebar Plugin ?

Hi guys ! Just a quick question. Does any of you know of a good plugin to make a sidebar using jQuery ? I'm not talking about CMS-style sidebar (WP, Drupal, ...), but more like Youtube's or Grooveshark's playlist on the bottom of the screen. I found something http://sideroad.secret.jp/plugins/jQuerySideBar/, but it doesn't exactly corr...

FilamentGroup DateRange selector with default preset

How I can show a daterange picker like this http://www.filamentgroup.com/examples/daterangepicker_v2/index2.php except I don't want show the menu for presets, insted I want to display immediately two calendars (date range) ...

Explicitly Displaying the jQuery.Tooltip plugin

I'm using the jQuery Tooltip control, http://docs.jquery.com/Plugins/Tooltip and it works really well. However, I have a task to show the tooltip when someone types 2 characters into an autocomplete control. I have it all hooked up to do it, but I do not know how to explicitly show the jQuery tooltip plugin. MyCompany.UI.Controls.AutoCo...

jQuery-UI Tabs - How to change effects?

I'm looking to add a nicer effect to a jQuery Content slider which uses tabs. At the moment it uses 'opacity' which is really ugly. Here is my code; $('#featured').tabs({ fx:{ opacity: "toggle" } }).tabs('rotate', 5000, true); Check out ht...

jQuery plugin authoring: explanation for "this" keyword?

I've been coding with jQuery for about 2 years now but I've never done it in a plugin. I'm trying to change this. I found a few websites that explain how to create a plugin and I understand the basics. The part that I don't understand is the use of the this keyword. Here's a simple plugin example: (function($){ $.fn.myPlugin = functi...