[jQuery] Re: Pimped-out Numeric input

2008-06-09 Thread Frantisek Malina
Nah, the SlideSet's drag and pull (http://fczbkk.com/js/slide_set/) is the way more cool than Spinbutton (http://semooh.jp/jglycy/jquery- plugins/spin-button). That involves a lot of clicking.

[jQuery] Pimped-out Numeric input

2008-06-08 Thread Frantisek Malina
Hi all, Anyone seen this sort of numeric input implemented in JQuery? It would be nice quantity input for shopping carts where you expect people to buy high number of smaller items. http://fczbkk.com/js/slide_set/ Script: http://fczbkk.com/js/slide_set/slide_set.js Dependencies:

[jQuery] Set #iframe height to height of the window - height of the #wrapper

2008-05-11 Thread Frantisek Malina
As it says on the tin: How do I set height of the element called #iframe to height of the window - height of the #wrapper div? I'd love to write: #iframe.height = window.height - #wrapper.height But I suppose jQuery isn't going to read my mind yet :)

[jQuery] Re: Set #iframe height to height of the window - height of the #wrapper

2008-05-11 Thread Frantisek Malina
How to make this easier on the eyes? $(document).ready(function(){ $(iframe).height($(window).height() - $(#wrapper).height() - 20); window.onresize = function() { // repetition $(iframe).height($(window).height() - $(#wrapper).height() - 20); }; }); On May 11, 2:07 pm, Frantisek

[jQuery] Re: validate with form plugin

2008-05-11 Thread Frantisek Malina
Hi, I used this form validation at http://www.mortgageworkout.co.uk/contact You can use on PHP validation classes, for people without javascript and other sneaky bastards ;) http://www.google.com/search?q=PHP+form+validation+class It's good to make sure that your JavaScript validation logic is

[jQuery] Collapsible / toggable table rows

2008-03-27 Thread Frantisek Malina
Hi, I am looking to implement collapsible and toggable table rows as you can see in this demo: http://www.mortgageworkout.co.uk/demo.html It is broken for some reason. 1: Colspan does not work. 2: I have a problem with relationships of elements as well. My current code is:

[jQuery] Collapsible / toggable table rows

2008-03-27 Thread Frantisek Malina
Hi, I am looking to implement collapsible and toggable table rows as you can see in this demo: http://www.mortgageworkout.co.uk/demo.html It is broken for two reasons: 1: Colspan does not work. 2: I have a problem with relationships of elements. My current code is:

[jQuery] Re: Can't assign variable content to some element border color in IE (very weird problem)

2008-03-27 Thread Frantisek Malina
Ok than, I was just to reply.

[jQuery] Accordion plugin height calcullation bug

2007-09-19 Thread Frantisek Malina
Hi all, I've got a problem with the accordion plugin height callcullation. It is a very cool plugin, but there seems to be bug in here. Plugin at http://bassistance.de/jquery-plugins/jquery-plugin-accordion/ It basically uses for stretching - height of the first element I hover over, instead of

[jQuery] Re: Accordion plugin height calcullation bug

2007-09-19 Thread Frantisek Malina
Lovely demo of this bug is at http://vizualbod.com/accordion/demo.html It is still crashing in IE7. I hope it can halp you to help me.

[jQuery] Re: Accordion plugin height calcullation bug

2007-09-19 Thread Frantisek Malina
Lovely demo of this bug is at http://vizualbod.com/accordion/demo.html It is still crashing in IE7.

[jQuery] Re: Accordion plugin height calcullation bug

2007-09-19 Thread Frantisek Malina
demo is at http://vizualbod.com/accordion/demo.html On Sep 19, 11:13 pm, Frantisek Malina [EMAIL PROTECTED] wrote: Hi all, I've got a problem with the accordion plugin height callcullation. It is a very cool plugin, but there seems to be bug in here. Plugin athttp://bassistance.de/jquery

[jQuery] Re: Accordion plugin height calcullation bug

2007-09-19 Thread Frantisek Malina
Demo at http://vizualbod.com/accordion/demo.html

[jQuery] Why is this accordion crashing in IE7?

2007-09-19 Thread Frantisek Malina
Demo is at http://vizualbod.com/accordion/demo.html

[jQuery] option disabled - emulation of missing support in IE

2007-09-11 Thread Frantisek Malina
Hi all, Is there any way to emulate missing support for option disabled=disabled functionality in IE 6 7 with jquery? E.g. select name=destination id=destination option value=xxxAnywhere/option option value= disabled=disabledEUROPE/option option value=ASIA/option option value=

[jQuery] Large clickable boxes

2007-09-05 Thread Frantisek Malina
Hi all, I need large clickable boxes which span the whole area of the .deal box. Href attribute should be extracted from links wrapped in heading2. I tried loads of experimants and ended up with the following disfunctional code. It should work, but it simply doesn't. Anyone could help me? html

[jQuery] Re: Large clickable boxes

2007-09-05 Thread Frantisek Malina
Cool, works like a charm in 5.5 upwards, Opera, FF. I spent few hours with this and you did it in a minute or so. On Sep 5, 5:40 pm, Klaus Hartl [EMAIL PROTECTED] wrote: Klaus Hartl wrote: $(function() { $('li.deal').each(function() { var $a = $('h2 a', this);