jquery-plugins

jQuery: Get .timeago() to work on elements loaded after DOM ready (Ajax)

Using pageless1 to trigger an ajax load of older, timestamped content onto the end of the page, I need .timeago() to act upon those newly loaded dates. It works on the content loaded the first time you arrive at the page, but not the content loaded via Ajax later. Thanks! ...

Jquery SpellChecker

Hello friends.. I am looking for Jquery SpellChecker Plug in if any body knows where I can find SpellCheker.js file please help me out.. thanks ...

jQuery DataTables plugin - secondary sorting (multiple column)

Hello, I can't find a solution for this in DataTables plugin. What I want is to have secondary sorting. What I mean by that is - for example, I have a table with product name and price, something like this: NAME PRICE A product 22.00 $ C product 50.00 $ B product 50.00 $ D p...

jQuery Plugin On Event Return True/False

I'm creating a plugin that replaces alerts/confirms for a project and I was curious if there was a way to make it like a real confirm where you can do: if(confirm('Yes or no?')){alert('You agreed!');} Right now I could do with a call back using this syntax: $.alert('yes or no',{type:'confirm'}); But i want to be able to do: if($.a...

JQuery - How to load external contents into one div, toggle div with sliding effect, and autoscroll down to see expanded div.

On my HTML page, I have: 4 images sitting in a row, and 1 div sitting immediately underneath - collapsed. Depending on which image the user clicks, I would like to load the corresponding external page content into that DIV (using ajaxpage.js?). When the content gets loaded into the DIV, the DIV should toggle open with a sliding action...

Dynamic Colorbox loading position

This is quick link to color box example. i need to change and customize place of color box loading Any one can help me? ...

creating jquery table from JSON data

I need to crate a table in my jsp using jquery.. I wish to use jqgrid plugin for that... Data that will come from the server is in the JSOn format????? i want to know how to implement a table in jquery using this JSON data.. Thanks for any help ...

Problem creating jQuery plugin with textareas

I'm trying to modify this script that emulates the Word 2007 minibar in a textarea. I have wrapped it in a plugin, the problem is that it will not work with multiple textareas. You can try it out at JSBin (Just select som text in the first textarea and then click on the "b") Can someone help me? I'm kinda lost. Update Should have m...

jQuery Datepicker mimicking Ajax Toolkit Calendar

Does anyone know of a jQuery small calendar / datepicker widget that can directly mimic the calendar that comes with the AjaxControlToolkit? I've looked at the jQuery UI calendar and this plugin as well as a few less appealing options, but I have yet to find one that includes the "Today: (today's date)" button on the bottom that lets yo...

Using plugins that are not updated anymore

I have a simple question: Would you rather use a plugin that is actively developed by the author(s) or use a plugin that is good in your perspective, but you know that it was last updated years ago and has no active support? ...

Help with jQuery's .live() method

I have a function that dynamically creates links for a photo gallery. The function also produces a larger image as a background image of a div when and thumbnail is clicked on. What I want to do is have a third event, where if the user clicks the enlarged image in the div, the jQuery Fancybox loads an even bigger version of the image bei...

jqgrid update SelectCommand at runtime and listen for row select?

1) I am using the jqgrid plugin to show results from different selections a user can make on sliders and such. The jqgrid loads via a php command: $grid->SelectCommand = 'MySQL SELECT statement here'; But I want to change this, and reload the data at runtime (via jquery) when the user makes a change. (Also if possible I would like t...

adding jConfrim breaks function

I am trying to add a confirmation box to this code: $('.widget .remove').live('click', function() { //Remove widget from layout $(this).closest('.widget').fadeOut('fast', function() { $(this).remove(); saveLayout(false); }); return false; }); This is what I did: $('.widget .remove').live('click', function() { //Remove w...

Three Dots jQuery on ajax load

I am using the ThreeDots jQuery pulgin and it works great. I am having trouble using it on an ajax success event. $.ajax({ type: "POST", url: 'url', success: function(value) { $("#content").append(value); $(".ellipsis").ThreeDots({max_rows:3}); } }); I load some new data and append the new data to a di...

jquery Validate Plugin. Generate random success message, once.

Yesterday I posted this question which is answered but it lead to another problem. I have the following code using jquery validation plugin: //array of success messages and randomly select one var messages = ["Good!", "Great!", "Awesome!", "Super!", "Nice!","Yay!", "Success!", "Ok!", "Perfect!","Sweet!" ]; function successM...

Superfish Menu Hovering

Hi, Hoping someone can point me in the right direction with regards to Superfish jQuery Menu Plugin at Superfish Site My question is, I am using this menu system inside Oracle Application Express (ApEx) and using IE6 browser. What I find and not sure if this is specifically relevant to Oracle ApEx but when I hover over a menu item, I ...

jQuery HTML Page Designer

Does jQuery have any HTML page designer plugins. An ideal one would let draw/create page with HTML tags. Maybe close to HTML editor programs like Dreamweaver. ...

How to Load/Replace an Entire DIV from an External HTML File

Hi, I have the following index.html page set-up: <html> <head> </head> <body> <div id="container"> <div id="header"> </div> <div id="sidebar_menu"> </div> <div id="thecontent"> <div id="page_banner"> </div> <div id="page_content"> </div> <div id="page_foote...

Making sortable table after first loading data into table using ajax

I'm creating a table without page refresh using: <script> function example_ajax_request() { $('#example-placeholder').html('<p><img src="/images/ajax-loader.gif" border="0" /></p>'); $('#example-placeholder').load("get_data.php"); } </script> <input type="button" onclick="example_ajax_request()" value="Click Me!" /> <div id="exampl...

Works in Firefox but not Chrome or Safari using jQuery Load

Hi, UPDATE I have now managed to get it working in both Firefox and Safari on Mac OS X but for some reason, it's still not working in Google Chrome 5.0.375.125. Could it possibly be related to this thread in the jQuery forums about Google not working properly on a file system url but will work when hosted on a server, i.e. see: jQuery...