Sorry, just realized this may be misleading. jQuery UI "Sortable"
allows you to REORDER items in a list. I am looking to have a user
drag/reorder items in a table, basically.
On Mar 3, 4:20 pm, Sam H wrote:
> I know you can't actually sort tables, it's kinda broken.
I know you can't actually sort tables, it's kinda broken. I can
easily sort UL lists, but whenever I try to use float: left and width:
XXXem to give set widths to each span, e.g.:
32 Bob Jenkins
#list li {
clear: left;
}
#list li span {
float: left;
background: #ddd;
I don't remember if it was like this in jQuery 1.2, but I have 1.3.1
and I can clearly see that slideDown/Up is much smoother in IE7 than
in Firefox 3.
Is it just me?
Perfect - thanks!
On Feb 4, 10:32 am, "Richard D. Worth" wrote:
> See this thread
>
> http://groups.google.com/group/jquery-ui/browse_thread/thread/9c8fbe3...
>
> for some examples.
>
> - Richard
>
> On Wed, Feb 4, 2009 at 11:24 AM, Liam Potter wrote:
>
Is there any way with jQuery UI Dialog to not show the "X" close box
in the titlebar? (what if I want to show a message dialog that the
user cannot close, such as a "Loading..." dialog)
John Resig said of 1.3:
"I only posted last week about how event delegation can help you to
optimize your code and it looks like jQuery will do it for you now,
which means that any event handlers you add to a group of elements
will automatically be added to matching elements when you create
them.
Sorry - but your script causes an infinite loop for some reason. And
jQuery's "nextUntil" doesn't work either, it doesn't survive past the
end of the sibling tree.
I need my function to go PAST the end of the list of siblings, up
through parents, etc., all the way to the end of the document if n
Most excellent - thanks!
Anyone? I might have to write a plugin to do thishmm
On Oct 29, 4:57 pm, Nic Hubbard <[EMAIL PROTECTED]> wrote:
> I am using the jquery each() function to find the id of text areas on
> my page. Then I need to add that id next to another function, but I
> am getting syntax errors:
>
> $('textarea').each(function() {
> var textId = $(this).a
Given HTML code like this:
I want some way to skip to each 'stop' class..something that crawls
forward, up and down parents and children, in other words:
var x = $('#main').crawl('.stop');//
[startingPoint].crawl([stoppingPoint]);
Now x == $('#sub'). ne
Thanks!!
On Oct 24, 9:08 pm, Mike Alsup <[EMAIL PROTECTED]> wrote:
> > Let's say you have this:
>
> > $('#myID').click(magicFunc);
>
> > magicFunc looks like:
>
> > function magicFunc()
> > {
> > $(this).fadeOut();
>
> > }
>
> > Now, let's say I want to invoke magicFunc on a certain item MANUA
Sorry, I don't know how to summarize this problem so I'll just post
code.
Let's say you have this:
$('#myID').click(magicFunc);
magicFunc looks like:
function magicFunc()
{
$(this).fadeOut();
}
Now, let's say I want to invoke magicFunc on a certain item MANUALLY,
via code, not through a us
I have an effect where I cycle through images with the default slow
fade speed, and when a user mouses over a link, I jump to a specific
image via:
$('#myPics').cycle(3);
The problem is, I want to change the fade options to "fast" just
before I jump to that image. How would this be done?
14 matches
Mail list logo