jquery-plugins

JQUERY DatePicker plugin used with usercontrols --> ASP.NET...??

can i use jquery date picker with usercontrol of ASP.Net..?/ i tried but its not working - but i tried with Default.aspx page, its working normal ?? wat should i do to use with Usercontrol.?? ...

How to program for matching

Is there a jQuery plugin for dragging answers from one area to another, and thereby making a "matching" quiz have a fun factor > 0? Example: <!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> <meta http-equiv=...

(jqGrid) Posting extra custom parameters to server

I have 2 Grids on my HTML page. When I click a row in one grid, it needs to load data into the other based on the selected row. Therefore I need to send the rowId as an extra parameter for the second grid.. Can't figure out how.. (I'd rather not like to use the subgrid functionality) ...

Positive feedback

I have a matching game, where a user can drag the answer from the left column to the right. I'd like to provide some positive feedback to the user with some eye candy. I'm thinking of the letters on the right-hand side exploding like fireworks, or doing some sort of animation, like running off the screen in a random direction. You know...

In jQuery, How to fix containment bug when using resizable() and draggable() simultaneously?

In jQuery, How do you fix containment bug when using resizable() and draggable() simultaneously? It seems as though the left offset and top offset of the containment for resizable is buggy if you use draggable on the same object. I have looked this up on google and a few people had the same problem, but no answers. If anyone could hel...

In jQuery, how do you make it so when I click a div, I can press the delete key and make something happen?

In jQuery, how do you make it so when I click a div, I can press the delete key and make something happen? For example, I click on a div, then after that I press the button delete and it alerts a message. If I dont click on the div and press delete, nothing happens. Thanks!! ...

jquery ui datepicker from date and to date search

Hi, I have a list of dated news articles in the format: Day Month Year e.g. 28 Jun 2010 I have been asked to create a from calendar and a to calendar using jquery Ui that indexes these articles based on the date range that the user has input. I was thinking of using jQuery UI datepicker as well as jQuery quick search but wondered if ...

Jquery Animation help

I am trying to create a ripple effect with Jquery. By having an element "bounce" one right after the other. I have it working but not sure as to why it only works this way. First off here is the code. //First Part (I Don't know why I need it?) $(elements).queue(function(){ $(this).fadeTo("fast",1); $(this).dequeue();}); //The Ac...

Facebook jQuery Plugins

What are the most Facebook like jQuery plug-ins, I would love to have a solid list of them. ...

ui.size not working in draggable() jquery-ui

For some reason I am getting a 'ui.size' undefined error. Here is my code: $('.canvas').draggable({ containment: $('.canvas'), refreshPositions: true, drag: function(e, ui) { area.css('border', 'none'); }, stop: function(event, ui){ var pinpointHeight, pinpointWidth, pinpo...

fullcalendar, how to call month method?

Hello, I'm using fullcalendar. And i want to change my calendar, so the default month is June (the initial month for loading), I believe this is what I need: http://arshaw.com/fullcalendar/docs/current_date/month/ The problem is, I'm not very good at .js... and the explanation isn't very clear. This is what i tried: <script type='te...

jQuery quickSearch plugin to fire on click of a submit button rather than event bound on input

Hi, Am using jQuery quickSearch plugin to filter a list: http://lomalogue.com/jquery/quicksearch/ However i want to filter on click of a submit button rather than the default bindings that are supplied with the plugin itself. I have tried the following to no avail: $(function(){ var $qs = $('input#id_search').quicksearch('ta...

jQuery DoubleSelect/Cascade/Dependent/WalkRight Select Menus w/ Ajax Support?

Where you can pick an item from a <select> menu and then it populates a second <select> menu. It goes by too many names and they're are too many implementations. I'm looking for an up-to-date one (works well with the latest version of jQuery) that can pull the data using Ajax. Can anyone recommend a good plugin? ...

Problem updating jquery dataTables plug-in with ASP.NET MVC

Hello, I need help in regards to updating a table rendered by jQuery data-tables plugin. I have a view called Index.aspx in which I have a DIV, where the traditional table data is rendered. Something like: <div id="students"> <table ...> <thead> ... </thead> <tbody> ... (all the r...

Opening links inside a fancybox-window inside the same fancybox window

This is probably not all that difficult, because otherwise iäm sure i wouldv'e found the answer somewhere... What i want to do i open up a fancybox (the jquery plugin), loading it whith ajax-content, and when i click a link inside it, it loads it with new ajaxcontent, like clicking a link inside a frame. Any ideas? ...

what is jquery noConflict, why do we need that?

i have seen a jquery code that contains jQuery.noConflict method. do not know purpose of it, didnt get the why we need that. i only understand that it is something related to jquery plugin. please help me to understand. ...

Use JQuery Cookie Plugin to save selectlist item in header?

Hello yet again! I created a ajax/ coldfusion select menu in my header on my website that allows one to select a department. This sets a session variable to the department ID. I want to be able to take my "datas" which contains the value of the select box and make sure that variable is applied to the selectlist everytime the header is di...

Anyone know how to initial a json import for jQuery.sheet?

I'm using the jQuery.sheet extension found at: http://www.visop-dev.com/jquerysheet.html Anyone have any experience with this plug in? Im trying to import a json file on page load. Following the demo I formatted my json output, but how do I load the output? I have my load function to: $('#sheet').sheet({ buildSheet: jQuery.sheet.m...

In javascript, how do I remove an element from an array of objects?

In javascript, how do I remove an element from an array of objects? Here is the code: $.fn.mapImage.deletePinpoint = function(image, pinpoint){ var deleted = false; for (var i = 0; i < image.pinpoints.length; i++) { if(image.pinpoints[i].position == pinpoint.position){ image.pinpoints.remove(i); d...

jQuery AutoSuggest - Show All option

I am using jQuery AutoSuggest plugin http://code.drewwilson.com/entry/autosuggest-jquery-plugin. That works fine. I configure to display 5 matches when user start typing. But I do have also "show more" link button on my page. When user click on that button, I need to display all the records. How can I do that using jQuery AutoSuggest ...