[jQuery] [SITE] Site

2008-05-20 Thread Dragan Krstic
http://www.eurovision.tv/ on pages dedicated to each contestant. At least, they use lyte(light)box and sifr. -- Dragan Krstić krdr http://krdr.ebloggy.com/

[jQuery] [SITE] www.velikibrat.co.yu

2008-03-04 Thread Dragan Krstic
The new season of Serbian Big Brother started and they made new site that uses jquery. I found pngfix, round corners and more -- Dragan Krstić krdr http://krdr.ebloggy.com/

[jQuery] Re: say goodbye to sifr

2008-02-11 Thread Dragan Krstic
I will stick with sifr. Microsoft tried their solution for fonts on web, but without success. Safari doesn't have great share on browser market. On 10/02/2008, schnuck [EMAIL PROTECTED] wrote:

[jQuery] Re: Slide UP plugin?

2007-09-05 Thread Dragan Krstic
There is. Look at Interface effects slide/blinds. If that doesn't help you (as I have similar problem), try this: Set container position attribute to position: relative, and overflow: hidden Hidden part (which will be displayed during resize of container) will have following css: position:

[jQuery] Re: remove a single css-property?

2007-09-05 Thread Dragan Krstic
$(.class).css(propertyName,); 2007/9/5, [EMAIL PROTECTED] [EMAIL PROTECTED]: is there any solution to remove a single css-property? i've the problem, that .show() leaves filter: ; in the inline-style (MSIE). now i want to remove only this property, but only this and not e.g. the whole

[jQuery] Re: jQuery Merchandise for Sale. Help Support the Project

2007-09-05 Thread Dragan Krstic
Where can I buy Energy Dome cap? -- Dragan Krstić krdr http://krdr.ebloggy.com/

[jQuery] Re: remove a single css-property?

2007-09-05 Thread Dragan Krstic
list In: $('#click2').click(function() { $('#test2').removeAttr('style'); $('#rmvLink2').hide('slow');}); all inline style(s) are removed but not styles defined in style list. I hope I will help you. 2007/9/5, [EMAIL PROTECTED] [EMAIL PROTECTED]: On 5 Sep., 15:00, Dragan Krstic [EMAIL PROTECTED

[jQuery] [jQuery][SITE] Spoted in the wild http://www.muzejistorijejugoslavije.org.yu/index.php

2007-09-01 Thread Dragan Krstic
This is one of the most significant institution in Serbia. They use tabs and thickbox

[jQuery] Re: [jQuery][SITE] Spoted in the wild http://www.muzejistorijejugoslavije.org.yu/index.php

2007-09-01 Thread Dragan Krstic
2007/9/1, Rey Bango [EMAIL PROTECTED]: Dragan, I have to tell you that when I first looked at the url, I could swear this was a spam message. :) From me? No way. Any way, it is museum dedicated to preserve memories to former Yugoslavia. It is biggest museum in Serbia (by square meters of

[jQuery] Re: height of div

2007-08-30 Thread Dragan Krstic
In this situations, I prefer to use dimension plugin. It is quite charming to use it. 2007/8/30, b0bd0gz [EMAIL PROTECTED]: Thanks for the quick reply, still getting a height value of zero I'm afraid, any other ideas? b0bd0gz Try this: $('#content').load('home.html', function(){

[jQuery] Re: Release: Accordion 1.5

2007-08-27 Thread Dragan Krstic
Hi Jorn, Well, so far that was intended to be a feature, not a bug. The combination of long-running animations with hover is annoying, right. But it is also annoying when the accordion keeps changing on each mouse move, even when you didn't intend to get a different chunk. Fixing it isn't

[jQuery] Re: hover and hoverIntent

2007-08-27 Thread Dragan Krstic
I noticed that, too. I would give a shot to window.status. It was handy during href=javascript:; time. 2007/8/27, Dan Evans [EMAIL PROTECTED]: I am wondering if anyone has noticed the issue with jQuery's hover function that makes it less than perfect for dropdown menus. Normally most

[jQuery] Re: hover and hoverIntent

2007-08-27 Thread Dragan Krstic
Solution would be: window.status = $(this).attr(href), I think. 2007/8/27, Dragan Krstic [EMAIL PROTECTED]: I noticed that, too. I would give a shot to window.status. It was handy during href=javascript:; time. 2007/8/27, Dan Evans [EMAIL PROTECTED] : I am wondering if anyone has

[jQuery] Re: hover and hoverIntent

2007-08-27 Thread Dragan Krstic
1a.html, 2a.html, etc. are the ones that don't display. - Dan On Aug 27, 1:55 pm, Dragan Krstic [EMAIL PROTECTED] wrote: Solution would be: window.status = $(this).attr(href), I think. 2007/8/27, Dragan Krstic [EMAIL PROTECTED]: I noticed that, too. I would give a shot

[jQuery] Re: jQuery 1.1.4: Faster, More Tests, Ready for 1.2

2007-08-25 Thread Dragan Krstic
I find slice very useful method. I just wanted to post a little tutorial about selecting a range of elements, but now, there's no need for that. No more filter().filter(). (beside that I made keyboard shortcut for that snippet). -- Dragan Krstić krdr http://krdr.ebloggy.com/

[jQuery] Problem with easing function was: accordion adventures

2007-08-21 Thread Dragan Krstic
I'm writing inverted hover accordion plug in. In order to fully reproduce Apple.com menu, easing function is essential. I'm using easing function copied from Interface. That easing function causes menu to jumps. In plain version (non-plugin) this function behaves nicely. Any clues, please?

[jQuery] Re: [NEWS] Paul Bakaus on Ajaxian

2007-08-20 Thread Dragan Krstic
If I'm not wrong, same technice is used in Jorn's accordion plugin. Still. congrats on feature! 2007/8/20, Paul Bakaus [EMAIL PROTECTED]: Thanks guys! :) And this 3 days after I set up my blog :P On Aug 20, 3:52 pm, Karl Swedberg [EMAIL PROTECTED] wrote: Excellent! Way to go, Paul!

[jQuery] Re: simple menu - hover issue

2007-08-20 Thread Dragan Krstic
Your problem is quite usuall. Go to plugin page and download hoverIntent plugin. It will help you. Search trough list if you want to know more about this bug. And, welcome to the list! -- Dragan Krstić krdr http://krdr.ebloggy.com/

[jQuery] Accordion adventures

2007-08-20 Thread Dragan Krstic
Due to popular demand (Mikael ;) ) I decided to rewrite my invert accordion script into plug in. Original code is on http://www.bydot.net/hoveracc/ But, First incarnation of script (ver 0.0.1) shows old problem. Accordion is dancing. Demo can be found on: http://www.bydot.net/iccordion/ PS

[jQuery] Re: Avoiding anonymous functions - enhancement suggestion

2007-08-18 Thread Dragan Krstic
I'm always for separating thing. Maybe, this would be nice: Function my_f(arg1,arg2,arg3) { //code } $(...).click().f_call(my_f,{arg1: arg1,arg2: arg2,arg3: arg3}); or similar. Maybe, plug in mechanism can be extended to do this stuff. John, for us who prefer $(...).bind(click,f(){});

[jQuery] Re: jQuery negatives: dual/triple/quadruple special-case uses for both function calls and method names

2007-08-17 Thread Dragan Krstic
2007/8/16, Glen Lipka [EMAIL PROTECTED]: As a non-programmer, (HTML/CSS only) I understand lt() and gt() mainly because of lt; and gt;. I think those are very easy. The place I get confused a little is when you can say $(p:gt(4)) and $(p).gt(4) and get the same thing. Why both? I suppose

[jQuery] Re: jQuery negatives: dual/triple/quadruple special-case uses for both function calls and method names

2007-08-17 Thread Dragan Krstic
Of course, but I'm in favor of lt gt eq. Maybe 'cause I learned FORTRAN on college ;) 2007/8/17, Erik Beeson [EMAIL PROTECTED]: $(p:gt(4)).show().gt(10).css(color,red); Or, if you need to operate multiple time on same collection: var my_coll = $(p); my_coll.gt(3).css(color,red);

[jQuery] Re: Resig's Accordion Lite

2007-08-07 Thread Dragan Krstic
Still, there is issue with callback when using step functions

[jQuery] Re: New Plugin: HoverAccordion

2007-08-06 Thread Dragan Krstic
have to wait for 1.2? I'm really excited about your plugin and can't wait to see the final result that works like Apples all the way. It's very nice work you are doing - keep it up! /Mikael On Aug 5, 6:53 pm, Dragan Krstic [EMAIL PROTECTED] wrote: @Bernd I see... I'm thinking about plugin

[jQuery] Re: New Plugin: HoverAccordion

2007-08-05 Thread Dragan Krstic
Of course, you can look at my example, witch more reasambly Apple.com menu. It's not plugin, but I'll make it soon http://www.bydot.net/hoveracc/hoveracc_4.htm -- Dragan Krstić krdr http://krdr.ebloggy.com/

[jQuery] Re: New Plugin: HoverAccordion

2007-08-05 Thread Dragan Krstic
@Bernd I see... I'm thinking about plugin that handles both scenarios, but it must wait for jQuery 1.2. -- Dragan Krstić krdr http://krdr.ebloggy.com/

[jQuery] Re: Resig's Accordion Lite

2007-08-04 Thread Dragan Krstic
This is accordion for showin', man! 2007/8/4, Dan G. Switzer, II [EMAIL PROTECTED]: Mitchell, Hi John I set up your menu so its as close to the one from Adobe as I could, given my meager knowledgebase. Adobe http://www.whatbird.com/wwwroot/Components/Accordion%20Menu.html Resig

[jQuery] Re: Jquery Vs. Prototype

2007-08-04 Thread Dragan Krstic
BMHO, jquery is easier to learn and doesn't extends native JS objects. jQ people is more enthusiatsic about library they use. Also, jQuery put standards in speed, documentation and support. By introducing jQuery, John forced other folks to improve their libraries. And comunity is very devoted,

[jQuery] Re: Good Javascript editor or IDE?

2007-08-03 Thread Dragan Krstic
HomeSite anyone? It is shame that Macromedia totally ignored. They didn't put anything new for more than 5 yrs. Yeah, it still lives in Dreamweaver coding enviroment, and when I'm using DW, 90% of time I spent there. -- Dragan Krstić krdr http://krdr.ebloggy.com/

[jQuery] Re: Resig's Accordion Lite

2007-08-03 Thread Dragan Krstic
In my inverted hover, I copy-pasted easing function from Interface. 2007/8/3, Mitchell Waite [EMAIL PROTECTED]: Hi John I set up your menu so its as close to the one from Adobe as I could, given my meager knowledgebase. Adobe

[jQuery] Re: Hover accordion (as on apple.com)

2007-08-03 Thread Dragan Krstic
I added some styling to inverted accordion and changed functionality a little bit. Now there's no need hoverIntent plugin. Still there's some styling issues in IE6 It can be found on: http://www.bydot.net/hoveracc/hoveracc_4.htm @John Why callback in animation method doesn't work when using step

[jQuery] Re: Hover accordion (as on apple.com)

2007-08-02 Thread Dragan Krstic
First to thanks all on replays. I knew that my solution is not perfect, and I hoped that someone will find better solution (secretly John). @Justin We all fill the pain. My knowledge of jQuery still have boundaries, trick is to find way how to jump over it. @John, Mitch This looks and feels

[jQuery] Re: Hover accordion (as on apple.com)

2007-08-02 Thread Dragan Krstic
@All: Ok. Here's a final solution for inverted hover accordion. hoverIntent plug in is must. Structure is same as I posted earlier. Later during I will upload it on web. script var radi1 = true; var kd_opened; var to_hide; var height_op; jQuery.easing.easeout = function(p, n, firstNum, delta,

[jQuery] Re: Hover accordion (as on apple.com)

2007-08-02 Thread Dragan Krstic
@John Why callback doesn't work with step function? Anyway, step function opens whole new field of synchronized animations. -- Dragan Krstić krdr http://krdr.ebloggy.com/

[jQuery] Re: Do you think jQuery's documentation is enought?

2007-08-02 Thread Dragan Krstic
I think it is enough for start. jQuery is much easier to learn and examples on jQuery much more understandable and useful than mootools,dojo or prototype. But, jQuery have some undocumented features. For any advanced use, documentation is never enough, but jQuery api stands out. -- Dragan

[jQuery] Re: Do you think jQuery's documentation is enought?

2007-08-02 Thread Dragan Krstic
2007/8/2, Alexandre Plennevaux [EMAIL PROTECTED]: Have you actually tried to read mootools documentation? It's very technical IMHO. Yes, I did, but it cannot provide kick start as jQuery documentation. I have feeling mootool docs is oriented only to experienced users. Jquery documentation

[jQuery] Re: Hover accordion (as on apple.com)

2007-08-02 Thread Dragan Krstic
Last version of inverted accordion on: http://www.bydot.net/hoveracc/hoveracc_3.htm Enjoy... 2007/8/2, [EMAIL PROTECTED] [EMAIL PROTECTED]: @John One more thing. I'm getting a serious amount of JavaScript errors, the same error repeated over and over. It seems to happen when i click

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-21 Thread Dragan Krstic
2007/5/21, Brandon Aaron [EMAIL PROTECTED]: Do you know what version/rev of the dimensions plugin you are using? What browser(s) are you having problems with? I'm not quite sure. I'm using striped off version. File is created on January,18th. In firebug I'm getting the following:

[jQuery] Re: MooTools 1.1

2007-05-09 Thread Dragan Krstic
But, all the demos are outside of jquery site, which doesn't have good effect. Then, there's that nasty two bugs: event overloading (especially during hovering) and quirky animation in FF. -- Dragan Krstić krdr http://krdr.ebloggy.com/