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.
...
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>
<...
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...
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...
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...
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
...
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...
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 ...
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...
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">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>test</title>
</head>
<body>
...
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.
...
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...
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,
...
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!
...
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({
...
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...
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/
...
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...
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...
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...