jquery-plugins

JavaScript rounded corners with transparent background

I'm looking for a JavaScript library that can create round corners on div tags with a transparent background, such that the background colour/image of the parent element is visible at the rounded corners. For an example of rounded corners without a transparent background, have a look at the left menu on this page. Notice that the backgro...

jQuery plugin structure

I'm using the following as a basis for a jquery plugin but I seem to have some syntax issues from my .find onwards. The code within the click function won't get called and the class is not being applied. Can someone suggest where I may have gone wrong here please? (function($){ $.fn.expandCollapse = function(options){ var ...

JQuery Form Plugin ajaxForm() Missing & Vars For input type="image"

I'm having problem getting the ajaxForm() function of JQuery Form Plugin 2.24 (with JQuery 1.2.6) to work with <input type="image"> For the first time, it does POST correctly, e.g., """&vu.x=13&vu.y=7""" (among other vars) and updates the designated portion within the outer <form>...</form> with the AJAX response, everything seems to be...

jquery validation plugin selected control

hello I can't control radio buttons with jquery validation plugin. when i delete the default values, it works. But I can't post my default values. best regards ...

Ajax call in a jQuery plugin not working properly

I'm trying to create a jQuery plugin, inside I need to do an AJAX call to load an xml. jQuery.fn.imagetags = function(options) { s = jQuery.extend({ height:null, width:null, url:false, callback:null, title:null, }, options); return this.each(function(){ obj = $(this); //Initialising the placehol...

Hide jQuery Accordion while loading

I am testing a site build with a slow connection and I noticed the jQuery Accordion stays expanded for a long time, until the rest of the site is loaded, and then finally collapses. Not very pretty. I was wondering how I could keep it collapsed through the loading process and only expand when clicked. I am working with the standalone ...

Jquery: Filter dropdown list as you type

I have used a prototype plugin which filters the contents of a dropdown as you type. So for example if you typed 'cat' into the text box, only items containing the substring 'cat' would be left as options in the drop down. Does anyone know of a jquery plugin which can do this? ...

create jquery cookie on form submit, then display it on the next page?

I am looking for some example code that does this, but am not having much luck. I'd greatly appreciate any help with this. Thanks!! ...

Jquery Position problem

hey well i am working on something that which will basically create a business card online here is a example. http://weblayoutsrus.com/draggable/example.html im basically trying to layout the div tags like fullname ect with css, then i want to grab the X & Y co-ordinates of the div tags relative to there container so that it can b pass...

IE7 .clone row prevents text field entry

I recently setup a web page to allow people to add new row to a table. I am using clone row and I discovered that using this procedure has a tendency to lock out IE7 users from typing data into text fields. has anyone else had this same problem. ...

jquery Google type suggest with restrict to list

I currently have functionality on a page to give a user suggestions based on what they type in a text box (jquery suggest). The functionality I would like to add is to restrict what gets selected / entered into the text box to only be items in the list. Basically like a combobox which restricts its selections to what's in the list. O...

jquery plugin that does not share its config between instances

I am working with a jquery plugin that looks like this: (function($){ var options; $.fn.main(opts){ options = opts; //rest of code } $.fn.otherFunc(){ //does something with options } }(jQuery)); The problem here is that if i use this plugin 5 times on the page, the options variable gets overwritten, ...

jQuery Execution?

My jQuery script has a glitch animating a div position. The bug seems to occur when I click the link right as the page is loading. ...

Fade in overlay in modal dialog

I have a JQuery UI dialog which is modal and has a black background with 50% opacity. Is it possible to make the background opacity fade from 0% to 50%? If so, how? Because currently it feels kind of like getting a punch straight to the face when a dialog is shown. FWIW, this is the CSS I'm using at the moment: .ui-widget-overlay { ...

What's your favorite jQuery modal plugin?

I'm looking for a jQuery plugin to show a modal-style popup consisting of a few paragraphs of text and a picture, which the user will view and close. So far, my search has turned up jqModal, BlockUI, and SimpleModal. Do any of these stand out? Would you suggest something else? (This is for use in a PHP site - no framework involved.) ...

jQuery modal window example?

I need a modal popup window. I'm thinking of using jQuery. Can anyone give me couple of good examples that implement modal windows. Something solid, well documented? ...

JQuery Treeview not working with Ajax

I'm new to JQuery and web development in general. I'm trying to load some data from an XML file and build an unordered list. I've got that part working, now I'm trying to use the TreeView plugin so I can collapse/expand the data. The data is loaded like this: $(document).ready(function(){ $.ajax({ type: "GET", url: "...

jQuery Plugin development help

Hello jQuery Gurus, This is my first attempt at a plugin but I think I'm missing the whole "How to" on this. Ok here goes: Trying to write an error popup box for form validation. I like the look and functionality on this JavaScript code on this page, See demo here and source here. It's basically what I want to do if the user enters ...

jQuery Cycle Plugin Previous/Next

Hey, Just wondering when using the jQuery Cycle plugin if for the next/prev buttons, it can be configured so that clicking the next button would slide right, and clicking prev would slide left. Thanks for your help. Dave ...

Calling jQuery effects too fast breaks my plugin

I'm wring a custom jQuery plugin based on the awesome jGrowl plugin. I just need it to do a few more things than it already does. Basically everything is working as I need it to (only tested in Firefox so far) except that if you call the plugin too many times too fast it stops and breaks everything http://jsbin.com/ofejo/edit Any idea...