jquery-plugins

Do you know a jQuery plugin for video file upload?

I need a jQuery plugin for uploading video files. it should generate some pictures out of movie as it is uploading ( not after the file uploaded ). Do you know such a plugin? if there is no plugin with this feature, can you suggest me some tutorials or articles about doing such a thing? ...

can i call qTip on mouseover in jquery (or any other effience way to call qTip)

I have this code below which works fine but seems unnecessary as it loops through all div.test even if i never mouse over them. I tried putting the .qTip() function inside the mouseover event to be more efficient but that doesn't seem to work. Any suggestions on how to make the below code more efficient? <script type="text/javascript"...

how to use rails3-jquery-autocomplete plugin for multiple words autocomplete

Hi, I have use rails3-jquery-autocomplete plugin and I am just wondering how can I use it to do multiple words autocomplete. e.g. INPUT rails, gem it should generate auto-list twice. How to solve this problem?.. ...

Jquery Confirmation samples

Hello All, I would like to have more samples regarding the jquery confirmation box. I have learned how to show the confirmation dialogure box through the below example: http://www.webstuffshare.com/2010/03/jquery-plugin-jconfirmaction/ But, I need more colorful samples, can you please help? ...

jQuery Plugin for multiple line-item forms

I have a form that acts as a frontend to entities in a 1:many relationship. The form lets the user edit the properties for the parent entity, as well as add, edit, and delete properties for the child entities. This is such a common scenario that I expect someone has already come up with an elegant jQuery plugin to help make a user-frien...

box turn effect

I want to implement box turn effect as in the following site when mouseover (please see the boxes below animation) http://pepsi.com/ It is made using flash,but i want to develop it using other than flash. will it be possible? ...

jQuery confirmation is not working

Hello all, I have used a jQuery confirmation, but it is not working for me. Here is my code: <link rel="stylesheet" type="text/css" media="screen, projection" href="demo.css" /> <script type="text/javascript" src="jquery-1.4.2.min.js"></script> <script type="text/javascript" src="jconfirmaction.jquery.js"></script> <script type="text/...

jQuery plugin not overriding defaults

I'm working on a jQuery plugin and can't seem to override the default settings, here's a snippet of the plugin. $.Auction = { defaults: { parentId: '#span', bidButtonClassName: '.live_bid' } }; $.setAuction = function(options){ startAuction(); } function star...

Is there a way in javascript/jQuery to perminantly store data?

Is there? I don't know. I've been hitting my head against a brick wall with ways to possibly do this without using a server-side language. So far my code runs well locally as well as on a server - I'd rather not have to use a server-side language. Well, there's the challenge. First one with a correct answer wins.... uh... points. (Oh,...

JQuery ScrollFollow with slideDown and slideUp - mucking up the math....

I have a column that is a full height div based on this layout: http://www.alistapart.com/articles/holygrail The right column has a series of divs in it, most of which have view more/hide functionality that uses slideDown() and slideUp() code: $('.barker-content').each(function(){ $(this).find('div.teaser:gt(0)').hide(); $(this).f...

Is it possible to display two/three months?

Is it possible to display two/three months? ...

variable input to javascript function parameter within a JSP page

I have the following function call inside a jsp page. jQuery(function($){ $("#product").mask("99/99/9999",{placeholder:" "}); }); What I want to do is pass a different string into the .mask function. In pseudo code it would look something along the lines of: String passedParam= someString if(test): passedParam = "someotherStri...

Scrollable HTML Table in Vertical and Horizontal Option

Hi All, I have a table which has many columns and lots of records. My user want me to have the table to have a fixed header but should have a scrollable option in both the vertical and horizontal version? Is this possible to do this that is cross browser? My target browser is IE 6.0 + and FF. I am looking for a CSS version or jquery...

How to use the GalleryView jquery plugin

I was wondering how I would use the gallery view jquery plugin. Which files should I include in my page, should I include the timers plugin,gallery view css file and the themes folder? Also how is he DOM structure like? I would really appreciate the help. ...

FullCalendar dayClick function conflict with select function

I have noticed when I am trying to implement the dayClick: and the select functions there seems to be a collision somewhere. Here is some narrowed down code. // WHEN YOU SELECT MULTIPLE DAYS select: function(start, end, allDay) { var title = prompt('New Select Date:'); if(title) { ...

Using the jQuery plugin ColorBox in noConflict() mode

Hi All, I am using the jQuery plugin ColorBox in a Joomla! theme, and am having a hard time getting it to work in noConflict() mode. I have the following code that calls my jQuery and the noConflict(); call, followed by my actual jQuery markup: <script type="text/javascript" language="javascript" src="http://ajax.googleapis.com/ajax/l...

jqtransform and input tag

I have used jqtransform jquery plugin. With this plugin, input type="submit" replaced with button tag. I dont want send form information with button. can I prevent this replacement? If not, is there any plugin that do this? Thanks in advance ...

jQuery send message to plugin

Hi there, I have a custom plugin, with a constructor like this: (function($){ $.fn.extend({ myplugin: function(options) { [..] In the plugin, I have a bunch of other functions. Now I attach my plugin to a dom-element: $('myelement').myplugin() and after that I want to send a message to the plugin from the wrappin...

JQuery validation based on class?

I have a form that will have dynamically created elements, one of those will be of date type. There can also be many fields of this type on my form, all which must be validated. I am using a strongly typed view in Asp MVC, so the name will change based on various factors. What I would like to do is validate based on a class name inste...

How to create a dynamic form using jQuery?

I've seen a lot of help for dynamically adding rows or fields, but I'm interested in controlling fields that are dependent on one another. For example, I have a form with 3 user inputs: <select id="foo"> <option value="0">No</option> <option value="1">Yes</option> </select> When #foo's value is set to 1, I'd like to enable #bar. ...