Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
57 views

How to create elements and select them on the fly with jQuery

I'm a bit stumped with this. I would like to create some elements (using jQuery), call a function on that wrapped set, and continue this process several times via a chain. For example, $('<div ...
2
votes
1answer
373 views

jQuery Plugin: Using callback to alter plugin behavior

I am using the jQuery token input plugin and would like change its behavior when a token is added. I added an "onAddToken" callback to the original code so I can see when a token is added to the ...
1
vote
3answers
361 views

adding 'if' logic to a jQuery chain

Let's say I have the following jQuery: // pseudocode : $(this) .doSomething .doSomething .selectSomething .doSomething .animate({ opacity: 1 }, 150) ...
0
votes
3answers
34 views

Reference to current object in Jquery chain

The following chain works: $("</p>").html('message').hide().appendTo("#chat").fadeIn() .parent().scrollTop($('#chat')[0].scrollHeight); But this doesn't: ...
0
votes
0answers
37 views

jquery change in external js

I have a php page where I create a counter. I want sync its with my DB's data. I use cometd for send data to server to client. My php page <input id="numero_preventivi_new" style="display: ...
0
votes
2answers
41 views

Jquery create effect after load

I have this function: $(".delete").live('click', function() { var commentContainer = $(this).parent(); var id = $(this).attr("id"); var string = 'id='+ id ; ...
0
votes
1answer
44 views

How to return an array of objects from a method of a jQuery plugin with chainability?

I'm writing a jQuery plugin called "myplugin" with plugin method "getSomeWhat". This methods may return a collection of somewhat, e.g. attr('id') of element(s) in ".someclass". I'd like to maintain ...
0
votes
2answers
197 views

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 ...
0
votes
2answers
880 views

nice jquery load effect

I would like to load a page inside a div with fadeTo effects. I have created this function for that function show(div) { $("#showdata").fadeTo(300,0.0,function() { $("#showdata") ...
0
votes
3answers
1k views

jQuery .animate/.each chaining

I'm trying to combine matching something like: $(".item").each(function(i) { //animation here }); with jQuery's inherent chaining functionality that forces the animation to wait until the ...
0
votes
3answers
613 views

jQuery:Problem in Chaining the events

I have the following javascript function which will load data from a server page to the div This is working fine with the FadeIn/FadeOut effects function ShowModels(manuId) { var div = ...