[jQuery] Re: sortable: drag list items by custom handle

2008-05-09 Thread emi polak
for that handle option) On May 8, 4:09 am, emi polak [EMAIL PROTECTED] wrote: Hi there, I am using $(#myList).sortable({}); to sortable-ize a ul list. All works fine, however the entire li element responds to dragging and I want the li elements to be draggable only by using a custom handle like

[jQuery] sortable: drag list items by custom handle

2008-05-08 Thread emi polak
Hi there, I am using $(#myList).sortable({}); to sortable-ize a ul list. All works fine, however the entire li element responds to dragging and I want the li elements to be draggable only by using a custom handle like this: li id=list_1 some content here div class=custom_handleMY

[jQuery] Re: animate() canceling

2007-09-02 Thread emi polak
Hey Eric, that works like a charm. Thank you so much! Emi Polak On 9/2/07, Erik Beeson [EMAIL PROTECTED] wrote: In fact, if you find yourself wanting to do a lot of stuff when scrolling has stopped, you could add an event for it (again, untested): (function($) { var scrollTimeoutID

[jQuery] animate() canceling

2007-09-01 Thread emi polak
Hi, I am altering the top property of a floating label in a webpage. The top adjustement is fired at page scroll, so that the label would always stay in its place. Now I would like to animate the label between its oldPosition and newPosition. So I use animate() to set the top property, but the

[jQuery] Re: animate() canceling

2007-09-01 Thread emi polak
no luck heh? :( On 9/1/07, emi polak [EMAIL PROTECTED] wrote: Hi, I am altering the top property of a floating label in a webpage. The top adjustement is fired at page scroll, so that the label would always stay in its place. Now I would like to animate the label between its oldPosition

[jQuery] Re: dimensions plugin, animated scrollLeft(x)

2007-08-14 Thread emi polak
I'll have to wait then :p Thank you Brandon and all jQuery team. On 8/14/07, Brandon Aaron [EMAIL PROTECTED] wrote: This functionality is slated for jQuery 1.2: http://docs.jquery.com/JQuery_1.2_Roadmap#Animating_scrollLeft.2FscrollTop -- Brandon Aaron On 8/14/07, emi polak [EMAIL

[jQuery] jqModal caching ajax requests

2007-05-24 Thread emi polak
Hello, I am using ajax requests to populate a jqModal window. The problem is that the content I am loading in the window gets cached, so any future requests will return the cached content. For example, I have: $('#popupwin').jqm({ajax: 'popup.php?win=add'}).jqmShow(); This will insert content A

[jQuery] refferencing multiple XMLHttpRequests

2007-05-14 Thread emi polak
The manual states that $.ajax() returns the XMLHttpRequest that it creates. How would these objects be referenced? I want to have multiple ajax calls and be able to execute different ajaxSuccess code on each. Could you provide an example please? Thank you for your time! Emi

[jQuery] Re: refferencing multiple XMLHttpRequests

2007-05-14 Thread emi polak
, data: data, dataType: json, success: on_success_one}); $.ajax({type: POST, url: foo2.php, data: data, dataType: json, success: on_success_two}); When the responses are received the correct function will be executed. Rob. On 5/14/07, emi polak [EMAIL

[jQuery] Re: $.ajaxSetup and timeout

2007-04-11 Thread emi polak
[EMAIL PROTECTED] wrote: emi polak schrieb: Hello, I want to load some html content that changes over time, so I need to poll the server for changes from time to time. Could anyone point me to an example of how to do this? The documentation I found contains no example... I tried the following

[jQuery] $.ajaxSetup and timeout

2007-04-10 Thread emi polak
. Thank you! Emi Polak