[jQuery] Re: Mega menu, but the good one.

2010-01-17 Thread Michal
no one? On 14 jan, 11:46, Michal greatmedia...@gmail.com wrote: I came across quite some examples of the so called mega menu. But there just doesnt seem to be 1 version that rules them all. What i really would need is a auto calculate size in the menu just like on;http://shop.puma.com

[jQuery] Mega menu, but the good one.

2010-01-14 Thread Michal
I came across quite some examples of the so called mega menu. But there just doesnt seem to be 1 version that rules them all. What i really would need is a auto calculate size in the menu just like on; http://shop.puma.com. There menu does not go outside the wrapper. Is there anyone who has seen

[jQuery] Re: Toggle stealing my sanity....

2009-03-17 Thread Michal Popielnicki
: this won't work: jQuery(#profile-edit-avatar).toggle(alert('toggled!')); do this: jQuery(#profile-edit-avatar).toggle(function(){alert ('toggled!');}); On Mar 16, 7:51 am, Michal Popielnicki michal.popielni...@gmail.com wrote: Hi there. I'm running jquery 1.3.2 and I've found rather

[jQuery] Toggle stealing my sanity....

2009-03-16 Thread Michal Popielnicki
Hi there. I'm running jquery 1.3.2 and I've found rather strange behavior of toggle function. In general i have following HTML: div id=profile-edit-avatar class=gray round edit s-5 div class=wrapper form id=profile-edit-avatar-form enctype=multipart/form-data method=post name=avatarForm

[jQuery] jcarousel question

2009-02-10 Thread Michal
Hello, I am using jcarousel and i love it! BUT there is just one thing i use the autoscroll and static controls. could we add a class to the active control to change the css... so when the carousel scrolls to the second image the number 2 static control gets a class like active or something...

[jQuery] Re: [ANNOUNCEMENT] jquery.timepickr.js: first official release

2008-11-11 Thread MichaL Sanger
Great plugin, but I think that value in input should be changed only when I click on some hour or minute cell. Or it's maybe OK to have something like preview in the input, but it's not OK when I move mouse over some cells, leave without click and the previous value is lost. MichaL On Tue, Nov

[jQuery] problem with events

2008-04-29 Thread michal
for (var i=0 ; i 4 ; i++){ var img = document.createElement('img'); $(img).attr( { 'id': 'imageId'+this.id+'_'+i, 'width' : '28px', 'height' : '28px' });

[jQuery] Re: Ext went GPL

2008-04-24 Thread MichaL Sanger
Does it mean, that if I have PHP application, that uses javascript under GPL3, I must release also PHP source? MichaL On Thu, Apr 24, 2008 at 7:16 AM, xwisdom [EMAIL PROTECTED] wrote: Yeah, the GPL 3 is viral and most open source developers don't even realize that once they distribute

[jQuery] Re: HOWTO: Nested hover

2008-04-17 Thread MichaL Sanger
I don't see any nested divs in your example =( MichaL On Thu, Apr 17, 2008 at 3:39 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, Weepy I was interested by your question so I had a go. It hasn't worked out quite as I expected, but it sort of does the job. Hope it's some help

[jQuery] Re: jQuery caching DOM refferences? Performance issues

2008-02-11 Thread Michal Popielnicki
it in a variable. e.g var id = $('#id'); for (i=0;i100;i++) { id.append(pnumber +i+/p); } what is the bottleneck in your code? -j On Feb 10, 6:12 pm, Michal Popielnicki [EMAIL PROTECTED] wrote: Hi there! I've been dealing with some performance clean-up of a code of a web- app that I

[jQuery] jQuery caching DOM refferences? Performance issues

2008-02-10 Thread Michal Popielnicki
Hi there! I've been dealing with some performance clean-up of a code of a web- app that I wrote and I was wondering if jQuery does caching of the DOM references. Lets say I have a function: function myFunction(){ $('#foo').attr(bar); } I frequently refer to the function, so is it the case that

[jQuery] TableSorter2 with TableSorterPager without PageSize

2007-08-24 Thread MichaL Sanger
Is there a way to use tablesorterpager without pagesize - the select box with number of rows? Something like: $('table').tablesorterPager({ container: $(#pager), size: 20, cssPageSize: null }); doesn't work. MichaL

[jQuery] Re: [ANNOUNCE] tablesorter 2.0 released

2007-08-16 Thread MichaL Sanger
Übercool!!! Thanks MichaL 2007/8/16, Christian Bach [EMAIL PROTECTED]: Hi List, I just released the 2.0 version of tablesorter. Here are the highlight for this release: * Multi-column sorting * Parsers for sorting text, URIs, integers, currency, floats, IP addresses, dates (ISO, long

[jQuery] Re: Preview: Brand new tablesorter 2.0, multi-column sorting and more

2007-07-06 Thread MichaL Sanger
I have same wish, paging is a must! =) MichaL 2007/7/6, Michael Stuhr [EMAIL PROTECTED]: Christian Bach schrieb: Hi, I put together a demo/preview for the upcoming release tablesorter 2.0 release. The main features of the upcoming release will be: - Multi-column sorting - Robust

[jQuery] Re: WYSIWYG Editor in Jquery

2007-07-03 Thread MichaL Sanger
Sure, http://wiki.fckeditor.net/Developer's_Guide/Configuration/Toolbar MichaL 2007/7/3, G[N]Urpreet Singh [EMAIL PROTECTED]: Thanks guys, But I used WYMEDITOR (http://www.wymeditor.org/en/) for this project. Making it work was a pain primarily because of sparse documentation. I'l use FCK

[jQuery] Re: Using hoever() to highlight TR, but not thead? Works in FF but not IE.

2007-04-06 Thread MichaL Sanger
What about add tbody tag around table rows that are not in thead and then make this selector: $('#myTable tbody tr') MichaL 2007/4/6, Andy Matthews [EMAIL PROTECTED]: I've got a table which looks like this: table id=myTable thead thName/th thPosition/th thSalary/th thSeniority/th