jquery-plugins

jquery datatable plugin doesn't seem to sort columns with links properly

i have a column that was pure text and the sorting worked fine but when i cahnge the column data to html regular links, the sorting seems quite random and broken. I couldn't find any other documentation on this issue on the site. http://www.datatables.net/usage/features any suggestions? ...

Dynamic options object for jQuery plugin (examples of)

Is anyone aware of any jQuery plugins that can work with a dynamic options object? What I mean is, I need to be able to pass in: $('div').somePlugin({title : 'title1', label : function(element){}, etc.}); and also $('div').somePlugin({name : 'name1', url : function(element){}, event : 'event1', etc.}); So the ...

jQuery Form Callback Compatibility Issue

I have a form on my website (http://www.jakelazaroff.com/#contact) that I submit with jQuery. The callback function for when the form is successfully submitted is supposed to make the form fade away; however, for some reason this only works on certain browser/OS combinations. Right now, the compatibility list is as follows: WORKS o f...

Extended function jquery

I have a function that looks like this: jQuery.fn.menuFunc = function( settings ) { settings = jQuery.extend({ actionAddURL:"", actionModifyURL:"", ........ },settings);}; where all the parameters i initialize (actionAddURL, actionModifyURL, etc..) are strings (ids of different elements...

Conflict between jQuery, Prototype, and plugins

I am trying to deconflict Prototype and jQuery in a rails app. I discovered that jQuery broke Prototype a good way into the app. I started the process by adding $jq = jQuery.noConflict(); to the application.js file. I then began going through all the .erb and .js files in the project, looking for jQuery calls to $ and replacing them wi...

Preferred jQuery toolTip?

There are a bunch of jquery tooltip plugins out there. Which one should I use? and why? ...

Jquery accordion is working on my computer but not on server

Hi, I'm having problems with jquery accordion together with jquery slider. The jquery slider is nested inside the accordion. On my computer this works fabulously (even though IE gives some problems). I uploaded on the server and it forms up the accordion links but these do not open when u click on them!!. any ideas? link Username:Te...

alphabet navigation with paging in jquery

I need to do alphabet navigation with paging for my grid/table in asp.net mvc(C#) application. I am looking for something similar to jquery ListNav The above plugin is good in doing alphabet navigation, but when a particular alphabet contains more than hundred records/rows, i need to implement paging with it. So the user wont have to s...

JQuery SimpleModal crashing on close in windows w/ safari

I'm leveraging SimpleModal on a small thing I'm working on to open an iFrame and later close it. Says to post here if having issues so here I am. I'm having issues with the simple modal plug-in for jquery when I go to close the popup, but only on windows with safari. It works in IE/FF/Chrome/Opera on window and works in FF/Safari on Mac...

How to generate a popup window like that in Google maps using Jquery or Jquery plugin?

When you use Google Maps, you click a marker on a map, then a window will pop up. You can even enter your mobile phone number and receives a sms from Google. How to generate that popup window using Jquery or Jquery plugin? ...

jQuery FullCalendar Fetch Event Optimization

Hello All, I was wondering if someone could give me some pointers to help optimize my jQuery Full Calendar Code. The issue i'm running into is when I fetch a lot of events through AJAX (> 25), the browser stalls and becomes unresponsive usually resulting in a message to the user to abort the script. I'm trying to avoid this error, an...

JQuery HoverIntent Returning Null

Hello, For my application, I use the hover intent add-on for mouse over/out panels. This extension works on every page of my application except for one, and unfortunately the problem only happens in production and not development. In this one page, the problem that occurs is that hoverIntent is not a function. Again, this works in al...

JQuery plugin to do this effect?

Is there a JQuery plugin that does this effect which is on this page? http://www.aspslideshow.com/Samples/AmazonMusic/tabid/87/Default.aspx ...

First jQuery Plugin: TagCloud

This is my first jQuery plugin. Can I get some pointers? It's currently not working... ; (function($) { $.fn.tagCloud = function(options) { options = options || {}; var maxPercent = options['maxPercent'] || 150; var minPercent = options['minPercent'] || 100; var retrieveCount = options['retrieveCount'] || function...

Javascript Exception Handling with email notification for Django

I very like the standard way of server side (python) exception handling in Django. And I want to have the same mechanism of client side (javascript) handling of exceptions. Now I found only DamnIT. But this server is returning 502 error now, and I don't like so much the way to use external service for simple sending emails with exceptio...

jQuery - each function

Hi there I currently have a list of thumbnails that is located in a ul tag as li's. I am using the Galleria image gallery, but I have more than six images in my gallery, so am I trying to implement a page system. What I am trying to do is the following: I have a row of images, row1, when you click on page 2 row1 should hide using thi...

Jquery masked input

Hi, I'm having a little issue with a masked input with jquery: I have a phonenumber text input, so I masked it with a little plugin that I got from this site: Masked-Input-Plugin by Digitalbrush It's so usefull to mask inputs with non-complex rules, so I used this rule to mask my phonenumber input: $("#txtHomePhoneNumber").mask("(99...

jQuery plugin question - can I modify a core method?

I've developed a few jQuery plugins before which follow the format of either $('#something').myPlugin() or $.myPlugin(). I know you can also write your own selectors. What I was wondering if I could write a plugin that changes how the css() method works, that is, if I request a shorthand CSS attribute (such as padding) I could return s...

jQuery anythingSlider - make the first slide last twice as long.

I'm using the anythingSlider by Chris Coyier. Basically it makes list-items slide in from the left after a specified time. I'd like to tweak the code, so that the first <li> is visible for twice as long as the others. E.g. If the slides are visible for 7 seconds, the first slide needs to be visible for 14 seconds. Any ideas? ...

How to preserve TextBox values on client side using wizard next and back button?

I have found great jQuery wizard here Jerod Santo blog which suits my need. I added TextBox on first step to test it. When I added some value in textbox, clicked next and then back I lost the value. Here is my demo and here is source code Is there a way to preserve this values on client side without going on server with ajax calls. ...