jquery-plugins

How to load a joomla module in jquery dropdown panel

Hi, I want to load my top-menu in a dropdown panel. I used this "jquery dropdown plugin" and it just works great for a html static content. But I'm going to load a joomla position in this panel so it may show a module in the dropdown panel. How can I do this? Note : please see the plugin page before any new suggestion. Best regards an...

jquery.tablesorter.js > sorting mixed-type columns

Hi All, I have a table that has a column for Days Remaining. The values in this column are either a number, or 'TBD' (to be determined). The tablesorter plugin doesn't properly handle the sorting of this mixed-type column. How could I get this to work properly? Thanks, ~jk ...

Set focus to jHtmlArea jQuery plugin

I'm using the jHtmlArea jQuery plugin on my page and I'm making it visible onClick of a button. Now I'm trying to place the focus into the jHtmlArea editor once it's displayed, but just can't seem to get there. I did find this blog post Setting Focus to Control in an IFRAME using jQuery which is talking about setting focus to an element...

How to have multiple instances of jQuery plugin on single page?

I'm writing a simple jQuery plugin, but I'm having trouble being able to use multiple instances on a page. For instance, here is a sample plugin to illustrate my point: (function($) { $.fn.samplePlugin = function(options) { if (typeof foo == 'undefined') { alert('Already defined!'); } else { var foo = 'bar'; ...

i can't delete a cookie with jquery plugin?

First showing the cookie, use this code from: electrictoolbox.com/javascript-get-all-cookies/ Then i made a form to add some cookie <form class="cokies" method="post"> <input class="query" name="q" type="text" /> <input type="submit" name="save" value="saving"> <a>Delete Cookies</a> </form> $(document).ready(function(){ $('.cokies a'...

scrolling tabs in jQuery

Is there simple solution to build tabs with the scrolling tabs-pane in jQuery? Like ExtJS Advanced Tabs: http://www.extjs.com/deploy/dev/examples/tabs/tabs-adv.html ...

AutoComplete JQuery plugin and ASP.Net C#

I'm using the JQuery autocomplete plug in, and am passing in an array of strings to autocomplete (see code below). The method I'm calling to get my data (GetCustomerNames) is just returning an array of strings, and that is working fine. I need to find some way to pass in a parameter to the GetCustomerNames Method so I can filter what i...

Looking for a plug-in similar to Accordian, but that allows multiple sections open at once.

I am looking to have a UI element similar to that offered by the JQUERY Accordian plug-in, but allowing the user to keep multiple sections open at once. The documentation has the following to say, and suggests an alternate approach with a code snippet (see below). That is great and all, and the code they provide basically works, but I f...

JQuery AutoComplete plugin in ASP.Net page with C#

I'm trying to write some JQuery using the AutoComplete plugin to display a list of names to the user as the user starts to type in the names (see code below). The code is working fine unless the user starts backspacing to change the name of the user entered, which causes it to write new values over the existing ones in the autocomplete ...

What tools are available for documenting jQuery plugins?

Hi, I've recently started creating some jQuery plugins and I'm finding it difficult to document them with the documentation generating tools that I've found. I've tried: JSDoc, JSDoc-toolkit, JGrouse and a web-based tool also. My biggest headache is that my plug-ins are coded as one big anonymous function, and I'm having trouble getting...

JQuery Gallerriffic plugin works locally but not remotely!?!

Hey! I'm using the wicked Gallerriffic plugin on a gallery page, and got it working locally... but for some frustrating reason it doesnt work when i upload the files to the server (in any broswer)! http://www.brookhouserh.co.uk/photo-gallery.html Thats the link to the gallery... it is picking up some of the jquery because the opacity ...

Jquery JqGrid Plugin

Hello All, I have an MVC application,I have downloaded the js Files for the JQuery and the JGrid Plugin ,I have fetched data from the database which I am binding to the grid,But the records are not visible in the grid. Please tell me how to use the jquery & jqGrid Plugin along with MVC application Thankx in advance Ritz ...

iGoogle style dashboard using jquery

Is there any jquery plugin for implementing iGoogle style dashboard? So basically drag n drop style etc. Thanks ...

Flash FlowPlayer crossdomain.xml error

Hi, I posted a problem I'm having with the FlowPlayer jQuery plugin at http://static.flowplayer.org/forum/1/29367, but I've had no response, so I thought I'd try the larger user base here... :) I am having a problem with crossdomain.xml and the audio plugin to play an mp3. The player loads ok but I get an error like this when I click ...

simpleModal to update form

To all: I am trying to update a form input radio button(s) using simplemodal to display the div containing the radio buttons. It displays correctly however when the modal is closed the change is lost. is their a simple call back that can update my form? Thanks in advance for your help. Bob ...

Jquery Fade In as mouse gets closer to element

I am looking for an effect such that when I move my mouse closer to an element, that element goes from 0 opacity (invisible) to 100 opacity. I am not looking for the typical mouseover/mouseout combination. The opacity should be dependent on the distance the mouse is from the element. The opacity would increase within a 100px bound...

Writing a jquery plugin to do text replacement

Let's say hypothetically I want to replace all 'a' in a string with 'b' 'abc' -> 'bbc' I want to run this on various strings: var str1= 'abc' var str2= 'adf' var str3= 'abvxvb' var str4= 'ae54' I'm trying to write a jquery plugin that does this. So I can do str1.a_to_b(); and get the desired result. (Actually having the syntax in a...

server side processing fails on datatable plugin in jquery

Hi, I am using the jquery 'datatables' plugin from http://datatables.net/ (I haveposted this on their forum but am posting here as I am not sure how fast it will get answered there). However I am having troubles getting the data to load into the table. I am trying a very simple example but it keeps coming back saying "Microsoft JScript ...

Jquery binding event with Map Hilight plugin

I'm trying to use the Hilight plugin for an image map rollover. You can see it here: http://www.quiznosforsale.com/test/ I want to stop the rollover effect when someone clicks on a state - allowing the user to click on information on the right side w/ out having the map switch to a different state. How might I bind this event and the...

Coda-Slider Previous and Next Button Hiding

Pretty simple question, I know it's just a matter of if / else if statements but I'm unable to get them to run correctly. I'm using the basis of http://jqueryfordesigners.com/coda-slider-effect/, I can get them hidden, etc, but when it comes to having them available depending on the situation (what is currently selected) I'm just unable...