jquery-plugins

jquery delete label on response

In the below code i send a json request for delete_st() on response i need that particular label and the two <br> to be removed.How can this be done <script> function manage_profiles() { var html = '<div name="tlist" id="list"><b>Profile</b><br><br>'; {% for groupid,empname,uid in response_dict.emp_arr%} if('...

qTip mouseover like gMail contacts

Hello, I am fairly new to qTip and so far things look awesome for implementing. I am trying to setup my contacts to have a mouseover like gmail has when you mouse over a contact is shows their picture and specific actions. I currently have the code loading dynamically with the position target set to mouse, and have the hide set to fix...

Error with jQuery dataTable plugin 1.6.0

I am using dataTable.1.6.0, below is the my code... $('#eventsPane div.genreEvents table').dataTable({ scrollHeight: 410, "aoColumns":[ {"bSortable":false}, null, {"bSortable":false}, {"sType":"date","iDataSort":4}, {"bSortable":false}, null ], "aaSorting":[[3,'asc']] }); ...

How do i know on which row was clicked in jquery

I have table which contains the rows that are dynamic from server side scripting(PHP) and also using Zend Framework . So each row will have hyperlink with id SOmevalue(Dynamic) now each row will have contextmenu (Jquery Plugin ) appended to each row by the below code. $("#myTable td:first-child").contextMenu("myMenu1",{ ...

jQuery validation plugin - partial validation depending on trigger

I am using the jQuery validation plugin and I would like to validate a floating point number and format it to a specified number of decimal places. I am using element.value = parseFloat(value).toFixed(param); to format the floating point value if it is indeed a valid floating point value, I just only want to do this on blur, not on ...

jQuery textarea - insert pattern cursor position

In a text area how to insert the pattern name next to the cursor position using jQuery and after which the cursor should be after the pattern:This should happen on the button click <input type="button" value="insert pattern" > <textarea rows="10" id="comments">INSERT The condition</textarea> ...

Write a jQuery Plugin that return values

I'm writing a jQuery plugin that stores some data in some cases. I'd like to write it in a very flexible way, where I'll can change an input parameter to obtain some value that were stored by the plugin. Explanation: When I call $("#any").myPlugin(), my plugin initializes creating a div and some a inside. Clicking on an a will store i...

how do i get the id of the a href which is dynamic in nature in jquery

i have the table of rows which are dynamic in nature from server side script (PHP) so each and every first td in the row of every table will have the context menu (jquery plugin) applied . How do i get the attribute id(which is dynamic in nature) of when ever the first item of context menu is clicked $("#mytable td:first-child...

what is a good wordpress gallery plugin that uses jquery lightbox?

i am using WP Photo Album and i like how it has albums but i am having trouble trying to make it work with lightbox. i've manually put lightbox in and it didnt work then i put lightbox as a plugin and when i click on one of the images in the album it doesnt show. this is what the images in the album look like <div class="thumbs"> <ul> ...

jQuery: On focus in textarea, Remove default text + change color , on unfocus - put text back

This is a very common usecase we see on stackoverflow, facebook, etc. You often want to give the user some text to direct him on what to do, but you want the text to disappear the moment he clicks on it. What is the easiest way to do that via JQuery? This seems like a fairly common use case ...

Is it safe to merge several JavaScript files into one?

I'm developing a dynamic website using jQuery and I have found several jQuery plugins to be very helpful when doing that. Of course, for each plugin I add, there is another script to load when the page loads. I know that for pages to be quick to load, smaller and/or fewer resources is better. Is it safe to just merge all those jQuery p...

jQuery plugins abuse

Possible Duplicates: Why build Javascript functions as jQuery plugins? Am I using too much jQuery? When am I crossing the line? I am trying to learn jQuery & front-end technologies in general. Right now my point of focus is jQuery. The framework has some really awesome plugins. But at what point does one consider the need fo...

jQuery - Own plugin - need small help

Hey again all :) I created my own jQuery plugin in 1.4 and now I need a small amount of help. $.etrade = function() { } I need so I can build code like this $.etrade = function() { this.var = 'setting'; this.subfunction = function() { }; } when I take function from my plugin I need to use it like this: $.etrade....

jquery.form update target some of the time

I'm using jQuery.form plugin to .ajaxSubmit() between div's popping in and out of view (for logging and sometimes validation purposes). The user can navigate forward and backward. Some of the div's have full form data, in which case I would use the form's parent div as target:. However, the other div's contain text and navigation buttons...

What is the most light weight lightbox jquery plugin?

Hi, I have been looking around, but I was wondering whats the most light weight lightbox plugin. One that does not really lag when it opens, animation is present, but minimal. I need one that can handle inline divs as well as ajax calls. Is it simply better to make your own? Thanks guys. ...

[jquery] Adding a live() function to the .jcarousel method

Hi guys, Im trying to implement jcarousel on my site. And the default way of doing that only works on data that is already there when the DOM is ready. In my case, im trying to add jcarousel on the result set (ul and li's) coming from my search box, which are added dynamically using AJAX. Which means it has to be added to live() in some...

How can I maintain reference to a particular plugin instance after an AJAX callback?

I want to fire off an AJAX call when a plugin is created that will retrieve some data and then continue building the plugin control. So given this simplified version: $.fn.grid = function (options) { this.each(function () { var $this = $(this); // Somehow to maintain $this for the callback buildPluginBasics($this); ...

Is there a correct way of using the HtmlHelper within a JavaScript function?

I'm writing a jQuery grid plugin and I've designed it so it works independently from the language being used. The following is the basics of how my plugin is assigned: $("#grid").grid({ enablePager: true, dataPath: "Movement/GetGridPage", columns: { Edit: { title: "", cellCallback: editButtonCallBack, width:"16px" }...

jQuery: lazy loader plugin + German umlauts

Hi all, I'm using a lazyloader plugin for importing .js includes on-demand. The problem: when my imported script will display an alert-box which has umlauts, the umlauts won't display - but i'm getting a weird replacement-character. I think it must be something with UTF8-encoding but i couldn't find out how to do this for a js-include...

Jquery Autocomplete JSON response

Hi All, I am trying to use the JqueryUI autocomplete plugin but I am unable to make it work. I am using Spring MVC at the backend and I am returning JSON response by following this http://loianegroner.com/2010/02/spring-mvc-and-ajax-with-json/ post that I got from the net. My problem is, there seem to be some problem in the way the au...