jquery-plugins

How can I override defaults in jQuery Fullcalendar

I use Fullcalendar on my site, but I need all text in different language. There is piece of code in that plugin: // function for adding/overriding defaults var setDefaults = fc.setDefaults = function(d) { $.extend(true, defaults, d); }; But I have no ideas how I can use it. Please, I need help. ...

jQuery table sorter with combined rows

Sorry for this title, I didn't know how to describe it better. I have the following table: <tr class="row-vm"> <td>...</td> <td>...</td> ... </tr> <tr class="row-details"> <td colspan="8"> <div class="vmdetail-left"> ... </div> <div class="vmdetail-right"> ... </div> <...

jQuery Plugin to perform Date manipulations

Am looking for a jQuery utility that will let me do date manipulations. eg: 1) Add x no. of days to a date and get a new Date. 2) For given a date, gives the corresponding week of the year 3) Find no. of days between 2 dates 4) Find no. of weeks between 2 dates 5) Find no. of months between 2 dates Is there a jQuery plugin that has the...

making jQuery plug-in autoNumeric format fields by time page loads...

Hi, I've been messing around with autoNumeric, a plug-in for jQuery that formats currency fields. I'd like to wire the plug-in so that all currency fields are formatted by the time the user sees the page, e.g., on load. Currently, the default that I can't seem to get around is that fields are formatted upon blur, key-up or other acti...

How to drill down any report

I have a report on RDLC.suppose this report of any account software.clicking on this report i want to show this report child report. Suppose i have Four report names are A,B,C,D,E.Click on button I see the report A, click on report Column I see report B or C or D,E next report show on basis of click on column.I actually want to drill dow...

Using multifile upload plugin in Edit mode showing already uploaded files

hi Diego Im using ur multifile upload plugin. it works fine for insert mode. but i want to use this in edit mode also. How can i do that? i need to show the already uploaded files in database using this plugin? Please help me out!!! its urgent Thanks Ahead !!!… Regards, Mandeep ...

What is the best jQuery based window plug-in you have ever used?

I tried a couple of jQuery based window plug-ins but unfortunately was not satisfied with any of them. Here's what I tried: http://hernan.amiune.com/labs/jQuery-Windows-Engine-Plugin/jQuery-Windows-Engine-Plugin.html http://fstoke.me/jquery/window/ http://www.soyos.net/aerowindow-jquery.html I need following features without any comp...

Modifying a Form Wizard Plug in - Add visited state for "Steps Left"

Hi trying to add a modification to the form wizard from http://www.jankoatwarpspeed.com/post/2009/09/28/webform-wizard-jquery.aspx I was already able to make it validate the current visible fieldset on click of next with tips found here but can't find anything on this. I need to add a "visited" class and apply it to steps that have been ...

How to get image to pulse with opacity with JQuery

I am trying to get an image to change opacity smoothly over a duration of time. Here's the code I have for it. <script type="text/javascript"> pulsem(elementid){ var element = document.getElementById(elementid) jquery(element).pulse({opacity: [0,1]}, { duration: 100, // duration of EACH individual animation times: 3...

Pulse effect with jQuery

I still cannot seem to get pulsing images to work with jQuery. This is code that apparently should work but does not. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml"&gt; <head> <title>test</title> </head> <body> ...

How to hide prev/next controls in "Galleriffic" plugin for jQuery?

In our project we use plugin for jQuery - Galleriffic (http://www.twospy.com/galleriffic/), it allows you to do slideshow with photo set. How to hide buttons prev/next in "pagination" block? In the navigation ("pagination" block) should be only the page numbers without buttons prev/next. ...

Creating a jQuery plugin: best practices regarding functions' visibility?

I'm creating a jQuery plugin. So far it's working fine, but I'm having doubt about the way I'm doing things: jQuery.fn.myMethod = function() { return this.each(function(){ MyScope.doSomething(jQuery(this).attr("id")); }); }; var MyScope = { // The functions contained in MyScope are extremely linked to the logic // of this...

Display of full calendar

Hi, How can I change the display of full calendar where by time appears horizontally at the top and events displayed vertically. Prompt response would be greatly appreciated. Thanks in advance, ...

Drap-n-drop HTML table columns (not rows)

Good day! I've found dragtable http://www.danvk.org/wp/dragtable/ but I need a Jquery-based solution. May be I'm missing something? Thanks in advance! ...

jQuery Cycle with IF and ELSE statement

I have the following code: $(document).ready(function() { if (!jQuery.browser.msie) { $('.banner').cycle({ fx: 'fade', speed: 1000, timeout: 10000, random: 1 }); } else { $('.banner').cycle({ ...

How to make a jQuery plugin (the right way)?

I know there are jQuery cookie plugins out there, but I wanted to write one for the sake of better learning the jQuery plugin pattern. I like the separation of "work" in small, manageable functions, but I feel like I'm passing name, value, and options arguments around too much. Is there a way this can be refactored? I'm looking for sni...

jQuery: Circulate plugin: stopping midway in animation

Has anyone had any luck in altering the plug-in code so that one might animate an object in "3d" space for only a 1/4 or 1/2 turn? As it stands, an object must complete a full circle before stopping or looping. And for those who haven't seen it yet: http://css-tricks.com/examples/Circulate/ ...

[jQuery] How do I invoke custom plugin on click?

I have the following code: (function(jQuery){ jQuery.fn.timepicker = function(){ return this.each(function(){ jQuery(this).val("14:00"); }); }; })(jQuery); Currently I invoke this function by the following code: $("#event_start_time").timepicker(); Where #event_start_time is the ID of an <input> field. I d...

Why build Javascript functions as jQuery plugins?

I've seen alot of jQuery implementations of existent JavaScript functions that merely wrap the JavaScript code in a jQuery wrapper and don't actually rely on any of jQuery's base for their operation. What are the benefits of using Javascript as a jQuery plugin? If there are none is there a speed loss to use a jQuery plugin that could...

Good Notification Plugin For Jquery?

Hi I am looking at pines notify(http://pines.sourceforge.net/pnotify/) and it looks good but it seems to have little actual documentation so I am wondering is there anything more established and worked on out there? Like I don't want to spend time trying to figure out how to use pines and then find out it is missing some feature that I...