jquery-plugins

Painting shapes in Javascript

Is there any good alternative to the html5-element canvas to paint shapes like hexagons using javascript, that works cross-browser (including the horrible IE6)? I have been using jQuery and jQuery maphighlight for this, but it doesn't give me enough possibilities to manipulate the shapes and colors after it's first rendered. Am I missi...

jquery tabs 3 - problems to send the hash to url

Hi, my first posting on this plattform. Hope someone can give me a hint. I've read some postings about tabs here, but it's not working completely for.. Is it right, that there is no hash sended to the url in jquery "TABS 3" by default ? I've read that I can send the hash with this to url.. select: function(event,..... .tabs({ se...

Attributes undefined when accessing via JQuery livequery

Hello, I'm very new to JQuery so this will probably sound ridiculous but I have a form that repopulates data via AJAX into a div section. The problem I'm having is that I have a link where I need to access some table row attributes that get rendered to the page during the AJAX refresh but the attributes are all undefined according to m...

server side paging with jQgrid

I just took a look at jqgrid. Has anyone tried implementing this plugin, or used jQuery, to achieve server side pagination? I am using struts2 and populating a html table with list returned from DB. This list is returned from an Oracle SP. The SP, along with some other parameters, is taking in 'start' and 'begin'. So I can pass numb...

Is there an automatic jQuery plugin updater?

Is there some sort of utility available that will check my jQuery plugins and see if they are the latest version? I understand that there is not an easy way to check the version numbers automatically; but I wonder if anyone has taken a look at this. ...

Apart from UI "flair", what do you use jQuery for?

From an ASP.NET MVC perspective, what do you use jQuery for? Apart from UI "flair" - things like fading colours and pretty animations. Things I can immediately think of include pop-up calendars and modal popup dialogs, but there must be more... Edit I am interested in jQuery uses for things that ASP.NET MVC does not do out of the box...

jQuery readonly slider - how to do?

How can I have a jQuery slider that is readonly? One that would display a value but the user wouldn't be allowed to move it? Thanks ...

jQuery Navigation Menu Plugin Recommendations

There are 62 jQuery Plugins for menus listed on the jQuery website. I want to select one for my navigation menu that has many users and is well-formed. What is your favorite jQuery Menu Plugin? ...

The rounded corners Ajax effect is useful for???

I still don't get the point of investing some coding time to add this effect even knowing that it will (probably) not be compatible with all the web browsers available out there. I want to hear your opinions. ...

Using a separate .js file to handle Jquery.

Hello All, I'm new to Jquery and am running into an issue when trying to put my JQuery scripts into a separate file in my project folder. I'm working with a plug-in called Corner. Here is the relevant part of the HTML file <script type="text/javascript" src="scripts/jquery-1.3.2.min.js"></script> <script type="text/javascript" s...

jQuery Plugin does not work in a Modal

I am using this in a modal: http://www.web2media.net/laktek/2008/10/27/really-simple-color-picker-in-jquery/ but it does not work. The same code: //Start of document Ready which contains event handlers $(document).ready(function() { $('#ForeColor').colorPicker(); }); <input type="text" value="#333399" id="ForeColor" class="colourP...

jQuery - how to freeze table header and allow scrolling of the rest of the rows

I have a table rendered from custom control over which I have no control yet I need to make this table scrollable so that the header, or actually the first row is fixed. Is there a jQuery plugin that would allow me to do this? ...

jQuery dynamic table live click plugin

I'm trying to write jquery-plugin for table. I have 2 dynamic tables from server: <div id="first_column"> <table> <tr id="f1"> <td class="select">some text</td> <td class="name">some name</td> </tr> <tr id="f2"> .... more same rows .... </tr> </table> </div> <div ...

Ruby on Rails, Low Pro, and JQuery (through JRails)

Hello peoples, I am using JRails with Ruby on Rails so that I can simply use jQuery since I am more familiar with it. I am also attempting to use Low Pro to submit some of my forms remotely. I am currently running into an interesting problem that has me stumped. I have added the following to my application.js file and I know that these...

jQuery onchange/onfocus select box to display an image?

Hi all, I need some help finding a jQuery plugin which will allow me to display an image preview from a select list of images - onfocus/onchange.. Example: <select name="image" id="image" class="inputbox" size="1"> <option value=""> - Select Image - </option> <option value="image1.jpg">image1.jpg</option> <option value="image2...

Can i use a function name in my jquery plugin parameters?

I am creating a form validation plugin for jQuery and would like it to call a function once the form has been successfully validated. The plugin will have a default callback function, but I would like to modify this through the options parameter. Unfortunately what i have (below) does not work. Any ideas? (function($){ $.fn.extend(...

Calling a function that resides in the main page from a plugin?

I want to call a function from within plugin, but the function is on the main page and not the plugin's .js file. EDIT I have jQuery parsing a very large XML file and building, subsequently, a large list (1.1 MB HTML file when dynamic content is copied, pasted, then saved) that has expand/collapse functionality through a plugin. The...

basic (lightweight) lightbox plugin

Hello i am looking for a very basic (lightweight) jquery lightbox solution that i can show my pictures and vimeo videos (flash player) on it. and of course browser friendly. I tried fancybox and its not working good in different browsers and also has some bugs on flash medias. Thanks. ...

JQuery cycle plugin with different effect on next and previous

Using JQuery cycle, is it possible to have different effects on the next and previous buttons? For example, have the next button scroll left and previous button fade? I know about the scrollHorz effect for left and right scrolling. Thanks ...

need suggestions on jquery plugin for rounded corners

I wanted to learn about jquery plugins, so I decided to try to make a simple rounded corner box. I know there are already some rounded corner plugins out there, but this is more of a learning exercise for me than a job requirement. The rounded corners I took from here. I like this sample since it doesn't use images, it will be easy to ...