jquery-plugins

jQuery Cycle plugin (or another one as well) for showing more than one item at a time

I would like to have a slide like the one at the home page of Twitter. This means, to have many posts showing at the same time, and sliding them with a certain interval. I've checked out the Cycle plugin of jQuery and I've seen that I could accomplish something like that using the scrollDown effect, but the only problem is that one imag...

Upload Image through Jquery Modal

Hello guys i want to upload photo to my application(asp.net mvc) using jquery Modal. first i have created the div that will be displayed in the modal like the following : <div id="dialog-form" title="Upload File"> <p> <input type="file" id="fileUpload" name="fileUpload" /> </p> </div> then when i press some Hyberli...

How to detect changes to a table using JQuery

I have a table which always updates by clicking on another link. This link has ajax functionality which is created by serverside API at run time and JQuery has no control over this link. Now whenever this link changes table, I want to call a function by JQuery, how do I do that? ...

jQuery "push down" list as in Twitter's home page

I need a jQuery list like in Twitter's home page. This means, to have many posts listed, and then, after X seconds, another post is inserted at the top of the list, with an effect, and pushing the rest of them down. ...

jquery: Embedding font face with jquery?

Hi, As far as I know that embedding font face is only possible with CSS3 (CSS2 but not CSS2.1), and not all browsers are ready for it yet, particularly IE (unless IE9?)... I wonder if it is possible to use jquery to embed font face? any idea how can I start the code? or any plugin which can do this job? Thanks ...

Trying to use Jcrop api

Hi, I am using Jcrop and I wan't to dynamically change the aspect ratio for the selection based on user input, so I guess the way to go is to use Jcrop api. Thing is that if I use it as a jquery function it works ok: $('#cropbox_full').Jcrop({ onChange: update_full_dimensions, onSelect: update_full_dimensions }); But if I use it ...

A Good jQuery drop shadow plugin?

In my spare time am trying to learn javascript & jQuery. I generally experiment on a website. I want to achieve a faint shadow-effect when some element appears on the page. This gives - This appears as if the element is above other elements on the page. and makes this new element something important to look at. How can I get this us...

Custom Event For Custom JQuery Plugin

I made this jQuery plugin called removable when you click the objects button it slides up and should trigger a custom event like onDone. Here's what I did (The codeing format is based on jQuery's http://docs.jquery.com/Plugins/Authoring): init: function(){ return this.each(function(){ $('a', this).click(function(){ ...

does jquery fancy box support mp3s?

hi, does jquery fancy box support mp3s? if not is there a a stable plugin? thanks ...

Cloning li elements in JQuery

I'm using EasySlider, but unlike any of the examples of this plugin that I've found, I show multiple elements at any one time and the width is 100%. The separate images make up a full, long consecutive image, which is Photoshopped so even the borderline between first and last looks natural. It's configured to be a continuous slide automa...

jQuery triggering a click event appears to be running one step behind

Hi, I am using tablesorter plugin which is great. I have had to clone the original header and then re-insert the clone above a scrollable area. To fire the tablesorter plugin on the hidden old table header elements i am triggering a click using .trigger() on the hidden table when a user clicks on the visible cloned table. Here is the...

jQuery 1.4.2 fadeIn(), show() Failing in Chrome when using easing plugin 1.3

Recently notice that all fade related content is breaking in Chrome with the error Property "undefined" of object is not a function. Can anyone by looking at this error thrown in Chrome tell me what is the problem? Uncaught TypeError: Property 'undefined' of object # is not a function: swingpublic/javascripts/jquery/jquery.easing-1.3....

jQuery: Add ui-close button to resizable/draggable ?

How can I add a close button to a draggable/resizable div? I understand that I am essentially describing a dialog, but I have to be able to take advantage of a few of the properties of resizable/draggable (such as containment) that are not a part of dialog. Any ideas? ...

jQuery URL parser plugin fails on '@' in query string - What URL parsing regex will work?

Background I use the jQuery URL parser plugin by Mark Perkins for extracting query string values from the current URL. The parsing process fails when query string values contain the '@' character, most notably when there is an email address in the query string. This is in reference to the latest version of the plugin, taken from the gi...

I imported a jQuery plugin into my project and my <a> tag CSS is overriding its <a> tag CSS

I have a page that uses certain styles that I have defined. On the same page I just imported an external jQuery plugin that uses its own styles, including, for example, an <a> tag style that is being overridden by my own. How do I ensure that the styles in my stylesheet do not override the styles in the stylesheet of the jQuery plugin?...

How to disable jQuery Fullcalendar plugin window resizing?

I'm using the FullCalendar plugin and it's working very well. I would like to disable the dynamic resizing of the table and its cells when the browser window is resized. Is that a possibility? (I noticed in the documentation the 'windowResize' callback fires after the calendar is already resized, so it looks like that won't help.) ...

jquery plugins for truncating long text string by container width/height

Hello all As the title says, I want to truncate user-input text string based on the width and height of a designated container. My specification is to truncate the string, display some message like Read More at the end and when user clicks on it, the text slides down. UPDATE: Ah! Forgot one thing. It should handle multi-byte characters...

What is the advantage of Jquery Templates

Recently i had gone through Scottgu's Blog where he had jotted of Jquery Templates i would like to know when and where to use these templates and where it should not be used. It would be very great of you, if you come forward with some simple examples. ...

Jquery Address Plugin Post Problem

Hi I am learning to use the Jquery Address plugin, and am using the tutorial over here So here is the html <a href="test1.html" rel="address:/test1">Test 1</a><br /> <a href="test2.html" rel="address:/test2">Test 2</a> Load Area: <br /> <div id="area"></div> And here is the Jquery code function loadURL(url) { $("#area").loa...

Find id of an LI element in a nested UL LI structure using jQuery

Hi, I have the following sample HTML code: http://pastebin.com/Mya6tPc6 And here is the jQuery code I am trying to use: $("#folder1").click(function(){ alert($(this).attr('id')); }); $("#f1").click(function(){ alert($(this).attr('id')); }); Here is the problem: If the user clicks on the element 'folder1', it will display 'folder1'...