jquery-plugins

jQuery Cycle Plugin - Dictate locaton of thumbnails

What I would like to do is dictate where my thumbnails are instead of using the main images as the thumbnail. I'm pretty sure this can be done, I just need a little push in the right direction. Here is my Code: <script type="text/javascript"> $('#imageContainer').before('').cycle({ fx: 'fade', speed: 2000, timeou...

jQuery for XUL?

I have read on the internet and found out that jQuery works OK on XUL. My questions are: Are there any jQuery plugins that are specially made to work with XUL? Is there any other jQuery-like library that was specially made for XUL? I have not yet tested jQuery on XUL, I'm just asking these questions for curiosity. ...

how to get current sort order from tablesorter plugin?

I'm just starting to use Christian Bach's excellent TableSorter plugin, and I need to get a column's current sort direction. I have several columns: ID Name Category ID and Name are set to non-sortable using headers: { 0: {sorter: false}, 1: {sorter: false} } I'm adding a click handler on Name so that it fires the sort event ...

jQuery watch for domElement changes?

I have an ajax callback which injects html markup into a footer div. What I can't figure out is how to create a way to monitor the div for when it's contents change. Placing the layout logic I'm trying to create in the callback isn't an option as each method (callback and my layout div handler) shouldn't know about the other. Ideally I...

Dynamically loading jQuery and extensions

Hi everybody, I'm trying to encapsulate a javascript that I built using jQuery, jQuery UI, jQuery Form and xmlDom. I want to be able to send to my client just one javascript that references the other ones, including just a small piece of js for options settings. Find below an example: <script language="javascript"> var myOptions = { ...

jQuery Plugin - How does it work?

I have a little problem: I don't knwo how to run this jQuery plugin: http://plugins.jquery.com/project/sound There's no demo available :( ...

jQuery lightBox Plugin 0.5 -- How do I display multiple galleries per page?

I am currently using LightBox, but I am running into issues with Scriptalicious and jQuery. I know there are many fixes for this, but I found jQuery lightBox Plugin 0.5 and think this is obviously a lot faster. However, I currently had a photogallery page, where there is a main image for each "gallery". Using regular lightbox, I can add ...

Problems Modifing Vertical Scroll Float JQuery to Horizontal

This is EXACTLY what I want- except I can't figure out the correct way to modify it to be horizontal instead of vertical. I'm sure this would take an experienced dev a quick second so I hope someone can help. (I tried to swap out all the 'Top's, 'Bottoms', & 'Height's with 'Left' Right' and 'Width'- but I didn't do it correctly apparen...

JQuery Colorbox

How can I show Colorbox on page load without event binding? In a more simple term I would like the Colorbox to load immediately on page load. this is the Colorbox which I am currently using http://colorpowered.com/colorbox/ ...

Jquery cycle plugin with number and text paging

I have the basic functionality of the jquery cycle plugin working. I have set up a test page at here but was wondering what would I need to change in order for the paging to resemble this page This is how I am calling the paging function, but I do not see anything in the plugin itself that would allow me to enclose the pager links in a...

Why does jquery ui ajax loaded tabs interfere with other ui methods?

I am trying to use jquerys ajax loaded tabs, along with other ui plugins such as accordion and dialog box. Everything will load fine via $(document).ready function, but if I try to use any of the methods after initial loading, the methods fail. But if I take out the snippet that loads the tabs, they work. So I think the problem is how...

Fast autocomplete for drop-downs

Hi, I am using JQuery's autocomplete plugin, but it is not fast and also it's not that relevant to my site. I want an autocomplete like the www.hotels.com. How can I achieve this type of autocomplete? Are there plugins for it? ...

Fade in/out text overlay image plugin for jQuery

I have a set of images in a directory I would like to cross fade in a loop. There are about a million jQuery plugins that can accomplish this. What I haven't found is the ability to cross fade text overlaying the images. What I don't want to do is have a duplicate copy of each image, one with and one without the text overlay, as this ...

jQuery countdown progress bar

Hi is there a jquery plugin for progress bar that can count down to a specified date automatically. I found some progress bars but none can do this automatically. what I want to do is that the plugin calculate time remaining between two values and display the progress in a progress bar. thanks ...

JQuery 'Uploadify' File Upload Plugin

I am using 'Uploadify' JQuery plugin for file upload. I read the documentation and referred examples and attached the code in my file. Everything works well except that after uploading the file, the file name just disappears. You can find the documentation here. The documentation says about "onComplete" option, but I am not following ho...

dynamically change jquery innerfade

I have a small form of transition settings next to some images I'm rotating using a jquery innerfade plugin. What I would like is when the user selects a new transition setting (ie, timeout) the innerfade dynamically updates the timeout setting so the user can preview what this change will look like. But I'm not sure the best way to do ...

A workaround to fix an IE bug with respect to the clone() method in jquery 1.3.2

Hi everyone....!! I am using the Jquery pagination plugin http://plugins.jquery.com/project/pagination to paginate the rows in a table. I also use a little tip provided in another SO question here to correct a bug in the original example... The code is working fine in FireFox and Chrome but not in IE6+... Here is my javascript t...

JScrollPane doesn't come up on first page load

I'm using a JScrollPane on a login page, basically after successfull login, it'll go to the second page where I should see the ScrollBar but the scrollbar dosn't show on first load, I have to refresh the page one more time, does anyone know why this happens? Has anyone used JScrollPane before? Thanks for your help. $(function() { ...

Custom jQuery plugin usage error - <public function> is not a function

I have written a jQuery plugin like this: jQuery(function($) { $.fn.myPlugin = function() { return this.each(function () { this.publicFunction = function() { alert('test'); }; return this; }); }; }); My JavaScript on my HTML page looks like this: var myPluginDiv = $("#divTest").myPlugin(); m...

Preventing conflict between jquery prototype/plugin methods

Suppose i have a main js file on the website that contains some code as follows: $.fn.extend({ break: function(){ //code here }, cut: function(){ //code here }, // ...many other methods }); and i use it like so: $('#mydiv').break().animate() ... Now if i add an external jquery plugin file that also has a 'break' m...