jquery-plugins

jQuery validation plugin. errorLabelContainer does not work after post back

Hi! I'm using the jQuery validation plugin. I have my form on the master page, i set up my validation rules in one of my aspx pages like this: $("#aspnetForm").validate({ errorLabelContainer: $("ul", $('div.error-container')), wrapper: 'li', onkeyup: false, rules: { ctl...

jquery 'this' with plugin design

I have a plugin where the original code is ... // when the DOM is ready... $(document).ready(function() { var $panels = $('.slider .scrollContainer > div'); var $container = $('.slider .scrollContainer'); However this assumes that it just 'runs' when the DOM loads. I'd like to use it more like... $('.slider').slider(); So my quest...

jquery masked input with asp.net control problem

Hi, I have problem while using jquery maskedinput with asp.net textbox. I have a check box that when I check will set a mask to the textbox and when uncheck it change the mask. the problem that when the focus is lost before the mask completed to be filled the text box will empty. how can I fix the problem??? here is my code: <html xml...

Jquery ui sortable (Empty-list ) example...

I am creating a interface where user can interact with the given options. I am using Jquery UI sortable Empty-list for that. What's the requirement:-- Suppose there is a table having two columns having some number of rows(>0). Now i need this Empty-list in every row.(I dont need this middle one shown in the demo ie non-drop-able) Only ...

Annotate users in text the way Facebook does

Hi everyone, I would like to build a UI component where i can write text and annotate users with @ like it is done in the status update of Facebook. I tried to modify an jQuery plugin but the JS skills needed to have a good result is above my knowledge. Do you any similar plugin or do you have any ideas on how to manipulate the DOM? (mul...

Tagging searching for previous tags, while allowing for new tags to be accepted

I'm looking for a jQuery plug-in that works the way tagging works on Last.fm. Tagging on Last.fm, uses an autosuggest to find previous tags and recommend them. If you select one of these tags, it updates the CSS like Facebook so it has a bubble around it with an X. Tags are seperated with a comma: , For tags entered that are new and...

filamentgroup - jQuery menu - behavior change - move iPod drilldown to widget

I am trying to use the iPod drilldown menu from the filamentgroup as a widget. http://www.filamentgroup.com/lab/jquery_ipod_style_and_flyout_menus/ They have I designed as a dropdown menu. But I actually need only the iPod drilldown menu part. As a "filemanageing widget". How can this be made possible? ...

What side effects does the keyword 'new' have in JavaScript?

I'm working on a plug-in for jQuery and I'm getting this JSLint error: Problem at line 80 character 45: Do not use 'new' for side effects. (new jQuery.fasterTrim(this, options)); I haven't had much luck finding info on this JSLint error or on any side effects that new might have. I've tried Googling for "Do not use 'new' for side ef...

jQuery table colorize plug in issue

I was wondering if anyone could help me figure out where i may be going wrong. I am using the Table colorize plugin to highlight some table columns depending on which column has been clicked. The table can be swapped in and out with different data via AJAX on clicking some tab links in an unordered list. Basically the plugin works gre...

jQuery Autocomplete plug-in search configuration

I'm looking into using jQuery autocomplete plug-in to implement user lookup by first or last name. It looks like by default autocomplete looks up words by character sequence no matter its occurrence in a word. So if you have data such as: javascript, asp, haskell and you type in 'as' you will get all three. I would like it to at least m...

jQuery Background Canvas transparency

Hi. I'm using the jQuery Background Canvas plugin and have created a DIV with rounded corners and a gradient effect. However, I'm unable to get the transparency to work. What am I doing wrong? Here's the JavaScript: $(document).ready(function() { $(".Test").backgroundCanvas(); $(".Test").makeElementTransparent("#CECFCE"); $(".Test").bac...

Slider control for volume - JQuery/Javascript

I am looking for a fancy Slider control using JQuery/Javascript. The native JQuery slider is rather bland for this requirement. The slider will be used to specify the volume in the increments of 5. So, this slider should only let user slide in increments of 5. One nice to have feature is to be able to show label above the slider positio...

fcbkcomplete, how to obtain all the values after adding or updating the Input

I'm interested in using fcbkcomplete, which has: onselect fire event on item select. onremove fire event on item remove What I'd like to happen for those two events is to alert a list of the IDs/values of the items in the input box. Can you help me understand how to get these values? Thanks ...

jquery modal window

Hi , Is there a jquery modal window which on on click on the background doesnt closeup. Thanks. ...

What are good jQuery plugins to highlight code and XML content?

I have a couple of web-pages where I write out some code c#, and some XML. I'd like to find a way to highlight the syntax of the different content to make it easier to read - very much like here on Stackoverflow? I already use a bit of jQuery so something that plugs into that would be a nice fit. ...

jquery colorbox and jquery date picker

hi to all I am using jquery colorbox and jquery date picker. My problem is date picker doesn't work in my popup window using jquery colorbox. I tried to used outside colorbox and its work fine. Any help would greatly appreciated. I tried the code below but still doesn't work. onLoad: function(){ $('#date-pick').datepick()...

jQuery colorbox and jQuery date picker

hi to all I am using jquery colorbox and jquery date picker. My problem is date picker doesn't work in my popup window using jquery colorbox. Any help would greatly appreciated. please see my code below I am using this plugin http://keith-wood.name/datepick.html here is my form which containe bidthday <div id="add-employee-cont...

in jQuery what is the difference between $.myFunction and $.fn.myFunction ?

I'm delving into writing plugins for jQuery and I'm trying to understand the distinction between $.f and $.fn.f I've seen pluggin authors use both, or sometimes assign $.f = $.fn.f Can someone explain this to me, reasoning, benefits, etc? ...

Best jQuery slideshow plugin with pause/play/next/prev controls?

I've done my homework - I swear, I've been researching this for a bit. I have found two nice options, each with its own particular problem: Option #1: "Supersized" @ http://buildinternet.com/project/supersized/ The problem is that the images become stretched to essentially become the background-image. I want the images to stay within ...

Why does IE6 give an "expected Identifier error" when using jQuery $.fn

I keep getting an expected identifier error at this line in my code =/ $.fn.myPlugin = $.myPlugin; any idea why this might be happening? ...