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

2008-07-20 Thread asle
., And it 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: 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] leandrovieira.com lightbox problems with several images

2008-07-18 Thread asle
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: Lighbox not working

2008-07-18 Thread asle
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 LInk http://www.balupton.com/sandbox/jquery_lightbox/ On Jul 18, 1:57 pm, Michael

[jQuery] Re: using the load method in Firefox

2008-07-18 Thread asle
then write js code 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 another page using the JQuery load

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

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

[jQuery] Tooltip onlink inside td 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
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 [EMAIL

[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 =

[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] 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
); }); return false; }); // 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] Floated content inside droppable list

2007-11-15 Thread asle
ul lisome subcontent here ./li /li /li /ul I guess this would be the same problem if the draggable object was div with positioned content. /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] 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('li class=sortableitem newitem'+myi+'new item/li') .SortableAddItem(

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

2007-11-12 Thread asle
, 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 li using the Interface plugins. This works fine. But when I add a new element with .append the new element is not draggable

[jQuery] Sortable on dynamic content - how to?

2007-11-09 Thread asle
Hello, I have a list with sortable elements li 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