jquery-plugins

Plugin broken after updating jQuery to 1.4.2

I've written a jQuery plugin and it was working well for all version up to 1.4.1. Now that jQuery was updated to 1.4.2 is stopped working entirely. I have a bunch of unit tests and in last version only 32 of 300+ pass. I have checked 1.4.2 changelog but all it says is that there were some performance improvements and that's it. Here's...

How to specify custom file for jquery inline form validation ajaxuser validation?

Hi everybody I am using jquery form validation plugin i.e (Jquery Form Validation by position-absolute.com) with php. I wanted to validatte the username through ajax request. and specifying the class attribute of the text box with: class='validate[required,custom[email]] text-input ajax["ajaxUser":{"file:"index.php"}]' But it doesnt w...

jquery plugins: Tooltip plugin using live()

I need a tooltip plugin that depends on live() method instead of normal hoever and mousemove ...

JQUERY, Anchor, ScrollTo, highlight

I have a large threaded comment list. When a person replies the author gets an email notification. I'd like the email to have a link to the reply something like: http://site.com/feedback/#reply-22 the page would have something like wow nice comment With JQUERY how can I detec the anchor, slowly scroll to the location on page load, and...

AnyThing Slider JQuery plugin working in Chrome, not in Firefox, can't find error

The JQuery AnythingSlider doesn't splay images in a RTL (right to left) (Hebrew) website. It works in Chrome, but not in Firefox and Safari. What am I missing? Thanks! ...

Tokenizing autocomplete jquery plugin not working with ASP.NET MVC

Hi I am using the autocomplete plugin but for some reason it is not getting to the controller when I start typing in the text box. Has anyone used this? or worked with this? or got a working example? I've tried changing the url to /Referral/Get but still does not work $("#uxSearch").tokenInput("../Referral/Get", { ...

white container with cycle plugin in IE7

hello i did the slideshow of html pages, i use the cycle plugin,it works well with all navigator except IE7 it show me a white page just the slide of image and not the text how can i resolve that thanks ...

jQuery Content Slider script help

Hi guys, I have on my site a <div> which contains child <div>'s. I want to make those children to slide into place like a content slider. I've tried a couple of different plugins, but they all failed because they tried to do some kind of DOM manipulation that just made things bad... My own implementation is poor and seems to be having ...

jQuery Marquee - Resets after four entries in Firefox

Good evening everyone. I am puzzling over the oddity that the jQuery Marquee plugin, which was working fine, suddenly resets itself after showing only four of six entries here: http://site427.mysite4now.net/tazthedog/site1/ (click on the Upcoming Events tab in the lower-right hand corner). This works correctly in IE and Chrome on a PC,...

JQuery pagination plugin issue.

Hi, I have pagination plugin on a web page. I want to be able to reload the data using ajax from different source by using radio buttons to select the list data. But this does not reload the pagination plugin. How do I refresh/reset to look at loaded data?? Tried this. $(document).ready(function() { $("#pagination").pagination(...

jquery asmselect: changes not firing on sort

I'm using the asmselect plugin to allow users to select & order multiple items from a select box. I only want to enable the submit button when the user has made a change. The following works, but change does not get called when sorting the selected elements: <script type="text/javascript"> $(document).ready(function() { $("selec...

Problem loading dynamic content of html + js via ajax

Hi, I'm using the jQuery UI Tabs plug-in to load html pages via ajax, so I have the following html: <div id="tabs"> <ul> <li><a href="pageWithGallery.html" title="pageWithGallery">Gallery</a></li> </ul> </div> The loaded page pageWithGallery.html contains a jQuery gallery which plays on $(document).ready. this however do...

Jquery - event does not work on the newly created element

Hello, I have a simple comment section where users can post comments to another users post - It works pretty much in the style of facebook wall where a user can write something on the wall and other can comment on it. So I have this form where the user can enter anything and when he submits - that information is inserted in the databas...

Adding a Value outside of the Auto Complete - jQuery Plugin: Tokenizing Autocomplete Text Entry

Hello, I'm using the following JQUERY Autocomplete plug-in: jQuery Plugin: Tokenizing Autocomplete Text Entry What'd I'm unable to figure out is how to add a value to the list from outside of the autocomplete dropdown list. The reason I want to do this is the autocomplete searches for locations, if a location is not found, there is an...

passing a formatted date with jquery datepicker

Hi all, I'm using the jQuery Datepicker (http://keith-wood.name/datepick.html) with custom date range. My problem is that I need the output of the date for the user to be in a readable format such as dd/mm/yyyy but then take that date and pass it into a search form as yyyymmdd. $(function() { $('#startDatepicker,#endDatepicker').datep...

jquery sortable before receive event

Hello, I'm trying to create an interface similar to IGoogle, where I would have different DIVs populated with links (UL/LI - list items) and user could drag the items from one div to another. To be more precise, I want to have one DIV that has all the available list items and other DIVs that are user defined (user drags items from the...

Using Jquery to pull Wordpress post feed into static page

Just like using the many twitter or facebook widgets out there that pull the feed and display it in a nice widget, I want to create a "widget" that pulls a feed from a wordpress blog that I have, and displays it on a static, non-wordpress page. Before I try getting my hands dirty with jquery, do you know if there is any pre-existing code...

jQuery cookies setting select drop down value after page refresh

In all honesty my brain is rather fried after getting this far today. I am trying to save the state of multiple select drop downs on page using this plugin: http://plugins.jquery.com/project/cookies I am using this jQuery to set cookies for the different title drop downs based on their ID: $(document).ready(function() { // hide 'Oth...

Delaying a Jquery function until Ajax is completely loaded

I am using a plugin that uses jquery to pull an rss feed, and displays it after the content loads. I wanted to use jScrollPane so I can have custom scrollbars. WithjScrollPane, it loads the scrollbars on pageload, but because the rssreader loads content with ajax, the scrollbars aren't applied (it takes 4 seconds to load the rss conte...

submitting a form using jquery's .validate function

hello, this is a simple question. I have a form that is being validated using jquery's .validate function. The problem is that validating only seems to work when I submit the form using: <input type='submit' /> However, I would like to use my own custom button using instead: <button type="submit">click to submit</button> .... or use...