jquery-plugins

jquery plugin for dropdown from select or list

I need a lightweight jquery plugin to build up a dropdown. I need this to work with both a source <select> or <ul>, this could be one or two separate plugins. The dropdown displayed needs to display the contents in multiple columns - I've only seen one plugin do this (http://www.givainc.com/labs/mcdropdown_jquery_plugin.htm) which is a g...

jQuery/ jQueryUI plug-in tutorial

Hi, I've got a Javascript UI component I wrote near a year ago, I've just taken another look at it and, to be frank, it could do with a re-write to make it nice and generic. The implementation uses jQuery 1.2.6 (or higher) and (currently) makes use of some calls to a server side component to get some data...it's basically a glorified t...

jQuery next page

Hai all i need to know how i can make next page in jQuery. i am crating a wall, and here i have a page limit on 10, after 10 wall msg, the user shot be anable to go to the next 10 wall msg. i have only one problem here, if i use $.getJSON the msg's load in a div tag, and when Google index my pages it only look page 1 in this wall. i ...

issues with jQuery plugin TreeView's toggle when unique set to true

Hi, I'm experimenting with TreeView plug-in located here: http://docs.jquery.com/Plugins/Treeview One of the options it has is "unique" - to have only one item expanded at a time. It works very well for display purposes, but then I try to hook in to the TreeView's "toggle" property/event to find out which one exactly was expanded. Wh...

Jquery cycle overflow problem.

In the jquery.cycle.js file, there is the following code: $.fn.cycle.transitions.scrollRight = function($cont, $slides, opts) { $cont.css('overflow','hidden'); opts.before.push($.fn.cycle.commonReset); var w = $cont.width(); opts.cssFirst = { left: 0 }; opts.cssBefore= { left: -w, top: 0 }; opts.animIn = { left: 0 };...

jQuery Validation Submitting without Validation in Firefox

Hi Guys, I've put together a pretty simple competition script - it's commented out below and you can find the demo at http://www.jakeisonline.com/stackoverflow/jqueryvalidation/page/ I am using a jquery plugin to achieve the validation: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ The problem is only in Firefox (3.5....

Looking for a jQuery plugin that implements dialog docking

I need to create the ability to "dock" dialogs (in a browser page) to each other. I'm using "dock" in the sense that MS Visual Studio is using for the windows inside the IDE (where you can make them "dockable"). The user should be able to slide a dialog until its edge hits another window. Then both of them can be dragged together as one ...

IE script error with my jQuery plugin

I cannot seem to figure out I am getting the following error in IE 8 (only IE version I've tested so far). The script runs fine in all (chrome, ff, safari) other browsers I've tested. What am I doing wrong? Error: Message: Object doesn't support this property or method Line: 52 Char: 29 Code: 0 URI: http://www.ntierdesign.com/jquery/...

ASP.NET MVC JsonResult and JQuery flot

I'm trying to use the jquery flot graphing plugin with asp.net mvc. I'm trying to dynamically pull data from a JsonResult in order to populate the graph. My problem is that I can't seem to get the data returned from the JsonResult in the correct format. Here is my server side code: public ActionResult JsonValues() { I...

jCarousel: Can you remove all items and rebind to a new collection?

jCarousel documentation states the following: By passing the callback function itemLoadCallback as configuration option, you are able to dynamically create (li) items for the content. {...} jCarousel contains a convenience method add() that can be passed the index of the item to create and the innerHTML string of the item to b...

jQuery plug-in with additional methods.

I've a jQuery plug-in that operates on some ULs, adding and removing classes etc. During the life-cycle of the page, I'll need to add/ remove some classes in code, and as my plug-in needs to perform some additional operations when this happens I came up with the following: // This is the initialiser method... $.fn.objectBuilder = funct...

The showErrors() function of jQuery Validation Plugin

The following script works fine: $("#regform").validate().showErrors({"username":"message"}); After I changed the script to the below one, it doesn't work. var name = "username"; $("#regform").validate().showErrors({name:"message"}); I need to pass the field name by a variable. Anyone knows how this problem can be solved? ...

loopedSlider jQuery plugin problem

Hi i use loopedSlider link text and there is html source. <div id="loopedSlider"> <div class="container"> <div class="slides"> <div><img src="01.jpg" alt="" /></div> <div><img src="02.jpg" alt="" /></div> <div><img src="03.jpg" alt="" /></div> <div><img src="04.jpg" alt="" /></div> </div></div><a href="#" class="previous">previo...

Calling jQZoom on Replaceable Image

I'm creating an e-commerce product page that will use jQZoom as a way of zooming in on the featured product image. I'd like, however, the ability to click an alternate product photo thumbnail and have it not only replace the big, featured image, but also re-instantiate the jQZoom() funcion on the newly replaced featured image. All of t...

jquery simplemodal dynamic height

I'm using the simplemodal popup in jquery, and I would like to set the height of my popup dynamically depending on my content. Currently, it is fixed at 500. If I remove the height property, then it works the first time, but if the content grows, then the height doesn't adjust itself (I have tabs within my popup and each tab loads diff...

jQuery scroll text side-to-side

I've seen Giva labs' marquee scroller and SerialScroll but can't figure out how to get it to scroll text in a div from side to side. My guess is I need some other type of extension. Basically, I have a div of width 100px and text that spans 200px and instead of scrolling it all the way through like a marquee, I want to scroll it left un...

jQuery plugin to display "loading" while waiting for AJAX response.

I am written some jQuery ajax code where I am sending a request to the server when a drop down option is changed. Based on this change 4 or 5 text fields change their data and bunch of new images get loaded. everything feels nifty. But I was wondering if there was a plugin provided by jquery that would make the page dark...show 'loadin...

Looking for new jQuery animation snippets

I'm looking for alternative ways to show/hide objects in jQuery. I.e. such as slideIn/Out, fadeIn/Out, etc. In particular, I'm after a plugin that shows/hides an object from the center and grows outwards, or reversed. Would also be great if it supports the various easing options. ...

Any jQuery Plugin Update Manager Utility?

We use jQuery very heavily on a couple of projects and along with it we have loads (sometimes close to a dozen) plugins we use (jqGrid, jPolite, jGrowl, colorbox, layout, validate, formatters, mask, to name a few). My fear is at some point managing which of these have updates that should be updated is going to become a challange. Anyone...

Save the state of a iframe after running a event.(jQuery)

I have tried implementing Google code into my own code yet I have been unsuccessful. Im unsure how? You could say Im very mush still a novice. I start by explaining the code: After clicking a link on the navigation, a click event fires on the main page, that show/display hidden links in the iframe. These links link too other pages. Th...