[jQuery] Re: leandrovieira.com lightbox problems with several images

2008-07-20 Thread asle
Thanks. I did not know that. I removed that but that did not solve my problem. /asle

[jQuery] Re: LightBox (or Modal) with ajax response from a POST type

2008-07-20 Thread asle
works in all browsers. Then you need to use livequery on your ajax code like ti.ex. this: $("#popup a").livequery(function() { #(this).lightbox; } (just out of my head!) Good docs on the livequery page. I use this on to load gallerys into a page and use lightbox on those galleryss. /asle

[jQuery] Re: leandrovieira.com lightbox problems with several images

2008-07-20 Thread asle
Anyone? Nobody using this lightbox plugin? /asle

[jQuery] Re: using the load method in Firefox

2008-07-18 Thread asle
e for that link like this: $("a.external").livequery(click,function() { $(this).doSomething().; }); Good docs on the livequery page. /asle On 18 Jul, 22:07, Princess of Mars <[EMAIL PROTECTED]> wrote: > Hi, > > I'm creating a page that loads content from ano

[jQuery] Re: Lighbox not working

2008-07-18 Thread asle
have several images in the container. Just wonder if anyone tried this. /asle On 18 Jul, 21:07, [EMAIL PROTECTED] wrote: > Yup I just test it , it works with other browsers but in safar 3.1.1 > it doesn't work but the old version worked > I'm talking about the Direct LI

[jQuery] leandrovieira.com lightbox problems with several images

2008-07-18 Thread asle
ter.min.js jquery.metadata.js jquery.lightbox-0.5 jquery.tooltip.pack.js jquery.dimensions.js I am using lightbox with livequery but even without calling lightbox directly does not return more than one count. /asle

[jQuery] Re: Tooltip onlink inside falls below the table

2008-06-04 Thread asle
not read the CSS for the tooltip? I tried to strip out all other js files except jquery and tooltip. No luck. /asle

[jQuery] Tooltip onlink inside falls below the table

2008-06-02 Thread asle
Hi, I am using Jörns tooltip plugin. The tooltip shows but below the whole table and not under the link. I am using this css: #tooltip { position: absolute; z-index: 3000; border: 1px solid #111; background-color: #eee; padding: 5px; opacity: 0.85; }

[jQuery] Tablesorter plugin problems with zebra stripes

2008-05-19 Thread asle
; and "even" but that does not happen for me. What am I missing? I try this: $("#tablesorter-demo").tablesorter({10: { sorter: false}, widgets: ['zebra']}); /asle

[jQuery] Re: Validate plugn -> Error does not go away!

2008-04-17 Thread asle
Thanks Jörn, I used the latest rev. but it did not work until I upgraded jquery.js to 1.2.3. Am not sure if it was jquery or validate that was fussing but this combination worked. My testfile now works perfectly. Yes, I will donate soon :-) /asle On Apr 13, 6:36 pm, Jörn Zaefferer <[EM

[jQuery] Re: Validate plugn -> Error does not go away!

2008-04-10 Thread asle
Here is a test page: http://fjklima.no/teknisk/validate.html /asle

[jQuery] Validate plugn -> Error does not go away!

2008-04-10 Thread asle
Hello, I am using jQuery Validation Plugin. The demos work fine. But when I am using a new form I get correct errors. When I correct the invalid input the error does not go away until I click the "submit" button. Here is the code for a form with id="finansform": var validator = $("#finansform").

[jQuery] Re: in IE, cannot copy from draggable modal layer

2008-02-12 Thread asle
I also have the same problem but also in Firefox. I cannot set a handle. The whole div is draggable and I cannot select text even though I have a "handle" property. Tried to upgrader to jquery 1.1.3 but no help. On Feb 11, 3:09 pm, Schmitt <[EMAIL PROTECTED]> wrote: > Hi, we have a draggable form

[jQuery] Re: handle in draggable() does not work - whole div is draggable

2008-02-11 Thread asle
Sorry, here is the dragable code: $("#trekning").livequery(function(){ $(this).draggable({opacity: .7,handle:"#dragTitle"})

[jQuery] handle in draggable() does not work - whole div is draggable

2008-02-10 Thread asle
}); // Code for "Draw" button to append data $("#trekkNy").livequery('click', function() { $.get("code/ajaxDb.php",{m:"getWinner",qid:trekkQid},function(data){ $("#trekning").append(data); }); }); /asle benoni

[jQuery] html() and text() creates block elements - need inline to output messages

2007-11-26 Thread asle
time but from the second time I click and on it shows under the buttons. I believe it displays block then? How do I avoid it breaking under the elements and displaying inline? Thanks, /asle

[jQuery] Re: Floated content inside droppable list

2007-11-15 Thread asle
Sorry, this is of course SORTABLE and not droppable. Hope this makes the question clearer!

[jQuery] Floated content inside droppable list

2007-11-15 Thread asle
same problem if the draggable object was div with positioned content. /asle

[jQuery] Re: Sortable on dynamic content - how to?

2007-11-13 Thread asle
Thanks, your first suggestion works and is shorter than writing the sortable code again. But this does not work: var myi = 1; $("#additem").click(function(){ $('ul.items') .append('new item') .SortableAddItem( $('li.newitem'+myi) ); myi++; });

[jQuery] Re: Sortable on dynamic content - how to?

2007-11-12 Thread asle
> the content and see if that works. > This would mean that the .Sortable object works only on elements > present inside the ul the moment the object is "given". > Prior to this I would have a look at the generated source after you've > clickedthe #additem to see if the .append works as you expected it. > > On 12 Nov., 02:39, asle <[EMAIL PROTECTED]> wrote: > > > Where do I go for help on this. Anyone?

[jQuery] Re: Sortable on dynamic content - how to?

2007-11-11 Thread asle
Where do I go for help on this. Anyone?

[jQuery] Re: Sortable on dynamic content - how to?

2007-11-10 Thread asle
Anyone have an idea as how to make a dynamic element droppable?? Anyone? On Nov 10, 12:31 am, asle <[EMAIL PROTECTED]> wrote: > Hello, > I have a list with sortable elements "" using the Interface > plugins. This works fine. But when I add a new element with ".ap

[jQuery] Sortable on dynamic content - how to?

2007-11-09 Thread asle
Hello, I have a list with sortable elements "" using the Interface plugins. This works fine. But when I add a new element with ".append" the new element is not draggable. I am quite new to jquery and am using Live Query on other dynamic elements. How would I write this function to make every dyna