jquery-plugins

Issue with JQuery Sparkline in IE

Hi, I used jQuery sparkline (http://omnipotent.net/jquery.sparkline/) in a page. This gives me problem in IE if the container DIV is not big enough to show it, tried with Firefox/Chrome, it is working fine. See the sample code, <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; <html> <hea...

What is the benefits of using jQuery UI over plugins?

jQuery 1.3.2 minified is 55.9K, and jQuery UI core itself has more than 110K and top of that each component adds more to this core. I am wondering good reasons to use jQuery UI over plugins. For example jQuery accordion plugin has only 3.8K, jQuery Tools which does accordion, tooltips, tabs, scrollable, overlay and expose has only 5.8...

jQuery: How to disable tooltip

Is there a way to disable browser tooltip from displaying when hovering over elements that have attribute 'title' populated? Note that I don't want to remove title content. Here is the code are requested: $(document).ready(function() { $('a.clickableSticky').cluetip({ splitTitle: '|', showTitle: false, ...

jquery flexigrid set active row

Hi! How do I set a active row in jQuery Flexigrid after reloading it (after a ajax callback)? Thanks in advance! ...

Extend JQuery Validator Plugin with custom method

I added a custom validation method to validate a password. However, it does not matter if the JSON I get is: {"success":true} or: {"success":false} The field password never validates. $(document).ready(function() { // Ad custom validation $.validator.addMethod('authenticate', function (value) { $.getJSON("./json/au...

How to merge jquery autocomplete and fcbkListSelection functionality?

Initial caveat: I am a newbie to jquery and javascript. I started using the autocomplete jquery plugin recently from bassistance.de. Yesterday, I found the fcbkListSelection plugin (http://www.emposha.com/javascript/fcbklistselection-like-facebook-friends-selector.html) and am using it to include a selector in my application. What I n...

How to call functions that are nested inside a JQuery Plugin?

My goal is to be able to call functions that are inside my JQuery plugin. What is the correct syntax? For example, this does not work: <a href="#" id="click_me">Click Me</a> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"&gt;&lt;/script&gt; <script> (function($) { $.fn.foo = function(options) { ...

How to use jqGrid with C#/ASP.NET and JSON.NET (and no AJAX.NET stuff)?

OK, I've been looking into this a few days and am not particularly sure what I am doing wrong. If anyone has working examples of using jqGrid with C#/ASP.NET and open source tools, please, please let me know where to find them. Any tips on finding decent documentation or tools I could use to debug this would be most appreciated too (I'...

jquery tablesorter disables submit functionality

Hello, I've got a table which Im sorting with tablesorter (http://tablesorter.com). Within that table there is a column with submit buttons. Each table row has got a submit button. Before sorting, the buttons work great and submit a POST request which is processed by a PHP script. AFTER sorting the table with tablesorter the buttons se...

Have Message Response Display in the Blocked Content with BlockUI

I have set up a page which when I click the button BlockUI does what is supposed to do as well as jquery Form plugin; however, the success and failure messages are displaying in the blockUI. What I would like is for the success and error messages to replace the form. The code I am using: $(document).ready(function() { $('#signup')....

Using cakephp and uploadify

Does anyone have a good tutorial implementing cakephp and uploadify thanks, ...

How to make a Javascript DropTree

I am trying to determine the best way to create a treeview list in a dropdown. I have found many JS controls of treeview's, but not how to implement in a dropdown list. ...

How to wait for document to finish loading in javascript when i am inside an event that occurs before

Hi I am using JQuery Address plugin for address.change event the problem is that this event occurs before document is fully loaded ( in FireFox & safari ) how can I wait for it to load? thanks. ...

Is it possible to write a second non-static, selecting, priviledged function in a JQuery Plugin?

Almost all of the examples in the jQuery tutorials that I've read, usually use one major public function for their selecting plugin. When I say 'selecting' plugin, I mean one that is not simply a static function extended onto jQuery. For example: (function($) { jQuery.fn.actionList = function(options) { var opts = $.extend({}, $....

ajaxFileUpload & document.domain

Hi, Does anyone know why ajaxFileUpload callback (succes) is not working on a page which use document.domain ? I'm using document.domain in order to proceed to main/sub domain AJAX request. UPDATE iframe on main domain : <iframe style="display:none;" src="sub.main.com" width="0" height="0"></iframe> <div id="stuff"></div> <script ...

How would I go about appending to a table row from within a jquery each function

In the following code $j is the jquery object. I was wondering why I can append to the tbody tag fine, however I cant to the tr tag via either of the selectiors: tr tbody or tr. How can I append to the table row correctly? Thank you for your help. var $this = $j('<table><thead></thead><tbody><tr></tr></tbody></table>'); $j.each(setti...

Assign Click Events to < li > in JQuery Treeview

Hello - I am using the JQuery Treeview plugin to display some data. Basically, I would like to add a click event to the child < li > elements that copies their innerhtml into another div on the page. I have not been able to assign a click event to these < li > elements however. Hoping someone has tread this ground before and can prov...

Extend jquery plugin to check negative numbers

I use a jquery validation plugin and I need to add some extra checking, but I can't edit the main file. How I can do this? ...

JQuery Cascade dropdown problem?

Hi All! I'm using JQuery based Cascade plugin probably it's working, but I found a lot of problems with it Maybe somebody already faced with this plugin and maybe could help. So, I using this plugin for location filtration Here comes my CS code: public JsonResult getChildren(string val) { if (val.IsNotNull()) { int lId = ...

JQuery "floating" tab like GetSatisfaction

I want to create a tab/widget/thingymajiggy like the feedback-thing in this picture: That behaves like this. I just need to redirect on click, I don't need all the other stuff. I have been unable to find a JQuery plugin, that does this - but maybe I just don't know the correct term. ...And yes, I could just pillage getsatisfaction, ...