jquery-plugins

jCrop inside thick box

Howdee doody all. I dont know if thick box is the cause of my problem but i believe it to be. The image that is to be displayed to be edited by the jCrop app does not appear. I have checked the path an sure enough leads me to the image. As anyone come accross this before? ...

jQuery Tools Tooltip

I have a link with a background image that uses the jQuery tooltip on a list. There are multiples of these on a page (for example 20). The first one works just fine but the remaining tooltips do not work. Any thoughts on how to resolve this issue? Thanks in advance. Here's my code (I am using NHAML as my viewengine): %script{language="...

How to make validating form entries easier?

I need a jQuery plugin which can really save the pandas, which one will you recommend? ...

jqDock (jquery Dock) issues. Spacing and images being "smushed"

I am using the jqDock from wizzud.com/jqdock and I was hoping that someone here had some experience with it. Here is what my dock looks like: My first issue is that my client is INSISTING that the dock should fill the entire width of the page, but nothing that I change makes that happen. The dock stays the same width no matter what ...

JS event handlers. Creating nice CSS button with jquery and integrating with jquery.validate and/or jquery.form

So, i'm writing a plugin using js with jQuery, that will replace all buttons (input type=submit and <button>) on my site's pages with nice buttons that look something like <a href='#'><span class='label'>Ok</span><i></i></span> At the very beginning i ran into trouble: some of my buttons don't just submit the form - some are hooked with...

Is there a jQuery editor plugin that support image uploading?

I haven't found one yet.Have you? ...

Zen Code + jQuery

Hi, I just read this article at Smashing Magazine (http://www.smashingmagazine.com/2009/11/21/zen-coding-a-new-way-to-write-html-code/) about Zen Code. Maybe there is any jQuery plugin for this? Might be good for json data inserting/templating. ...

Suppress jQuery event handling temporarily

Is there an elegant way to temporarily suppress jQuery events? I use code like this: $(element).unbind(event, function1).unbind(event, function2); // code for which the event is suppressed $(element).bind(event, function1).bind(event, function2); but I find it a bit clumsy and not very scalable to many events. Why do I want to suppres...

jquery dynamic form error

I'm having trouble implementing this jQuery plugin for dynamic forms while following this tutorial This simple code is giving me an error in Firefox 3.5.5. $(document).ready(function(){ $('#duplicate').dynamicForm('#plus', '#minus', {limit:5}); }); and the error: "$("#duplicate").dynamicForm is not a function" There is an ...

Jquery vertical carousel

Do you know any jquery carousel that doesn't need any extra markup or so...here is my markup: <ul class="navigation"> <li class="navigation-top"><a href="#" class="prev" title="Up"><span></span></a></li> <li class="with"><a href="#" title="Shopping">Shopping1</a></li> <li class="with"><a href="#" title="Shopping">Shopping2</...

Why doesn't jQuery form validation plugin work in my page?

Why does not jQuery form validation plug-in work? This is the code: <form id="form2" action="comment.php?id=5" method="post"> <div>Input your own comment:</div> <textarea id="textarea2" name="textarea2" rows="3" cols="29"></textarea><br/> <input type="submit" value="Submit"></form></div> <script type="text/javascript" src="http://de...

jQuery Tools Tooltip Issue

I am using the jQuery tools tooltip on a page. When the user rollovers a link, I would like to show a ordered (or unordered) list on a image. The list is dynamic for each link. I can get it to work for the first link but all other links do not work. Does anyone have a working example of multiple dynamic jQuery Tools Tooltips working on ...

submitHandler doesn't work

The following code doesn't work. $(document).ready(function(){ $("#digitalchange").validate( { rules: { addbalance: { digits:true, min:20, max:1000 }, addquota: { digits:true, min:5, ...

Jquery fullCalendar removeEvents

$('#calendar').fullCalendar('removeEvents') is only removing events from the current month and not others. Any idea what i'm doing wrong? Anyone else come accross this problem? ...

Changing jquery cluetip dynamically

Hello, I am trying to change the cluetip content dynamically by changing the title attribute dynamically as I am using the cluetip plugins splittitle method to generate the cluetip on a table row. I am using the jquery attr(key,value) method to change the title value but the title remains the same as the one which is loaded the first ti...

JQuery TreeView Plug-in SelectedItem Highlighting

I am using the JQuery TreeView plug-in and I would like a know how I can highlight/identify the last selected node. Has anyone run into this? ...

How do I have jQuery's autocomplete plugin display its dropdown list upon page load?

http://community.sciencecareers.org/mt-static/plugins/CommunityPlus/js/autocomplete/ http://community.sciencecareers.org/mt-static/plugins/CommunityPlus/js/autocomplete/demo/ Trying to programmatically trigger the display of the autocompletion list results. This, instead of waiting for user input. Is this doable? (I've tried getting ...

My form can not be submitted even if "true" is returned in the submithandler function, what's wrong

This is the jQuery code: $(document).ready(function(){ $("#digitalchange").validate({ rules: { addbalance: { digits:true, min:20, max:1000 }, addquota: { digits:true, min:5, max:1000 ...

JQuery Tabs, problem altering selected element

Hi All, I'm using http://jqueryfordesigners.com/jquery-tabs/ for a project, the tabbing code looks like this:- <script type="text/javascript" charset="utf-8"> $(function () { var tabContainers = $('div.tabs > div'); tabContainers.hide().filter(':first').show(); $('div.tabs ul.tabNavigation a').click(function () { tabContainers.hide()...

Best plugin development practices to avoid polluting jQuery namespace?

I have created a jQuery plugin that allows the user to interact with a tree (creating, updating, deleting nodes). There are at least a dozen methods for interacting with the tree. Ideally, I don’t want to pollute the jQuery namespace with all of these tree-specific methods as I am doing now as each methods presents an additional opport...