[jQuery] Re: Improved timePicker, time/datePicker demo

2007-05-27 Thread R. Rajesh Jeba Anbiah
On May 27, 11:00 pm, Anders <[EMAIL PROTECTED]> wrote: > I've been working on improving Sam Collet's original timePicker. > > Here is the result:http://labs.perifer.se/timedatepicker/ > > The demo is a Google Calendar-like time/datePicker. It's far from > perfect, most of the issues are with the d

[jQuery] Re: 15 second delay with IE

2007-05-27 Thread R. Rajesh Jeba Anbiah
On May 25, 9:46 pm, Bil Corry <[EMAIL PROTECTED]> wrote: > R.RajeshJebaAnbiahwrote on 5/25/2007 6:26 AM: > > >Mostly the problem is with the packed version. Try using the > > original version. At least for me, the packed version is extremely > > quirky. > > Is there a reason to use the packed

[jQuery] compressed blockui

2007-05-27 Thread dfd
i've downloaded blockui. Nice work, but it want not to be compressed because of a missing colon on line 199. Mike, maybe you can fix it up? Regards, frank aka dfd

[jQuery] CSS3 support

2007-05-27 Thread pd
Hi All I know I'm dreaming and it's probably not realistic but on the front of the jQuery site is the following proclamation: "CSS3 Compliant · Supports CSS 1-3 and basic XPath" Should that proclamation really say "CSS3 Compliant (selectors) because AFAIK jQuery doesn't appear to support any CS

[jQuery] Re: Text Button

2007-05-27 Thread james_027
Hi rob, Thanks a lot. Your answers are very helpful. cheers, james On May 23, 4:25 pm, "Rob Desbois" <[EMAIL PROTECTED]> wrote: > Karl, > Any particular reason why you would use a link to click the button to > perform the button's task, rather than just disposing of the button and > assigning i

[jQuery] Re: PNG background Tiling

2007-05-27 Thread Glen Lipka
Didn't seem to work. I changed my strategy though. I put a regular IMG png on the page with a width of 100%. Check it out: http://www.sparkt.com/index.htm This is a crazy strategy I am using the achieve the results. Rather than tiling, I just give them 100% width or height. The fade on the top

[jQuery] function are getting called twice

2007-05-27 Thread bingo
hi, I have a webpage (say webpage1) that include another webpage (say webpage2). Both the pages have $(document).ready(..to attach jquery function to elements of their page. However, since webpage2 is included within webpage1, the functions within webpage2 are getting called twice. Is there a

[jQuery] Re: A demo and an optimization question

2007-05-27 Thread [EMAIL PROTECTED]
David, I'm not sure how coincidential life could be, but i just began working on the same icon set last night. Although its not relevant to jquery, you can see a HUGE optimisation boost using css sprites. This will get all 1,000 icons within view in about 1-2 seconds (as opposed to several m

[jQuery] Debugging jQuery 0.2

2007-05-27 Thread Ⓙⓐⓚⓔ
A minor upgrade. a neat feature to help debugging bound events, like click and keyup... plus clicklogger to report back where your users clicked and when! http://jqueryjs.googlecode.com/svn/trunk/plugins/debug/ -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: Changing class on a preceding element by click link in another div

2007-05-27 Thread [EMAIL PROTECTED]
Perfect! Thank you! On May 25, 7:43 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Hi Jared, > > It looks like the problem now might be caused by the .click() on the > p.close sort of butting into the add/remove class game where > the .toggle() method was handling it just fine. I'm going to sugge

[jQuery] Re: PNG background Tiling

2007-05-27 Thread Khurshid
Haved tested tiling yet, but give this a try http://khurshid.com/jquery/iepnghack/

[jQuery] Re: Attribute selectors

2007-05-27 Thread Karl Swedberg
Glen's suggestions should work. For classes, the best way is probably to use the class selector, along with "not" (either as a method or a pseudo-class). So in addition to Glen's examples, you could do this: $('p:not(.myclass)') For other attributes, you can do something like this, too: $(

[jQuery] PNG background Tiling

2007-05-27 Thread Glen Lipka
Does anyone know of a way to make IE6 tile background PNGs with transparency? Glen

[jQuery] Re: Attribute selectors

2007-05-27 Thread Glen Lipka
How about: $("p").not("#selected") or $("input").not("[EMAIL PROTECTED]" + somevariable + "]") You also have filter() and some other ways of finding it. Glen On 5/27/07, Adrian Gheorghe <[EMAIL PROTECTED]> wrote: Hello everyone, In a project, a few weeks ago, I needed support for something

[jQuery] Attribute selectors

2007-05-27 Thread Adrian Gheorghe
Hello everyone, In a project, a few weeks ago, I needed support for something like @attr!="val", that is selecting all attributes which don't have a certain value (for example selecting all divs which don't have a certain class). I was wondering if support for something like this is planned, if i

[jQuery] Re: Problem with globalEval

2007-05-27 Thread Matt Stith
Well i dont know specifically, but im sure at least the older ones do. Any newer phones should hide it, but i dont know any specifics. On 5/27/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: Hmmm I'm curious ... which cell phone browsers will show the script? Do you have or know of any articles o

[jQuery] Re: Safari append to empty div

2007-05-27 Thread Ⓙⓐⓚⓔ
I tried a simple program to do that in Safari,Webkit, Opera & Firefox, it works as advertised. Did I miss something? http://cigar.dynalias.org/plugins/debug/safari.html http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd";> http://www.w3.org/1999/xhtml"; xml:lang="en"> $("#emp

[jQuery] Re: Problem with globalEval

2007-05-27 Thread Brandon Aaron
Hmmm I'm curious ... which cell phone browsers will show the script? Do you have or know of any articles on the topic? -- Brandon Aaron On 5/27/07, Matt Stith <[EMAIL PROTECTED]> wrote: True, but alot of cell phone browsers will show the scripts if its not commented out. On 5/27/07, RobG <[E

[jQuery] Re: Problem with globalEval

2007-05-27 Thread Matt Stith
True, but alot of cell phone browsers will show the scripts if its not commented out. On 5/27/07, RobG <[EMAIL PROTECTED]> wrote: On May 28, 5:10 am, "Matt Stith" <[EMAIL PROTECTED]> wrote: > The HTML comments are to hide the script from older browsers that dont > understand javascript. The

[jQuery] Re: Safari append to empty div

2007-05-27 Thread Karl Swedberg
If you know the div is empty, and you just want to put a string in it, you could do this instead: $('#emptyDiv').text(str); If you're not sure it's going to be empty, you could try this: var $maybe = $('#emptyDiv'); if $maybe.is(':empty') { $maybe.text(str); } else { $maybe.append(str); }

[jQuery] Re: Safari append to empty div

2007-05-27 Thread Ⓙⓐⓚⓔ
Safari makes lots of false steps in its efforts at optimization. I always try the webkit version at http://nightly.webkit.org/ If it still croaks, put a   in the div. On 5/27/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: well, I've developed an admin system which rely heavely on jQuery. B

[jQuery] Re: Problem with globalEval

2007-05-27 Thread Ⓙⓐⓚⓔ
that's much better... it will solve everything, except those old browserwill see // // instead of nothingness. RobG, didn't Nav 2 and IE 3 handle tags? I thought we were talking about the original couple of browsers that followed 'WorldWideWeb' On 5/27/07, Matt Stith <[EMAIL PROTECTED]> wrote:

[jQuery] Safari append to empty div

2007-05-27 Thread [EMAIL PROTECTED]
well, I've developed an admin system which rely heavely on jQuery. But, safari can't seem to append html to empty div's (or perhaps any div) - is there a fix to this? im doing something like this: var str = 'lorem ipsum'; $("#emptyDiv").append(str); But nothing happens, works in firefox tho

[jQuery] Re: Problem with globalEval

2007-05-27 Thread RobG
On May 28, 5:10 am, "Matt Stith" <[EMAIL PROTECTED]> wrote: > The HTML comments are to hide the script from older browsers that dont > understand javascript. The use of HTML comments inside script elements hasn't been needed since Navigator 2 or IE 3. I doubt that anyone is still using those b

[jQuery] Re: Problem with globalEval

2007-05-27 Thread Matt Stith
No, in HTML, to comment something out and have it not evaluated by the browser, you do . So, a little thing that alot of javascript developers do to hide the javascript from older browers (ones that dont support javascript at all, like cell phone browsers), and make it so that the browser doesnt

[jQuery] Re: Problem with globalEval

2007-05-27 Thread Ⓙⓐⓚⓔ
The older browsers that jQuery doesn't support? On 5/27/07, Matt Stith <[EMAIL PROTECTED]> wrote: The HTML comments are to hide the script from older browsers that dont understand javascript. On 5/27/07, Ⓙⓐⓚⓔ < [EMAIL PROTECTED]> wrote: > > why do you have instead of /* comments */ in a scrip

[jQuery] Re: A demo and an optimization question

2007-05-27 Thread David Singleton
Thanks for the tips. Always using element.class in selectors makes sense, I should make it a habbit rather than being lazy. I understand about the idea of ID for a unique instance and classes for repeated types, but this was thrown together rather quickly as a demo, so the semantics aren't perfec

[jQuery] Re: A demo and an optimization question

2007-05-27 Thread Sean Catchpole
I think the problem is not the javascript, but instead the browser. Trying to change the display of a thousand items can cause it to be a little slow. I present to you a small example, that shows javascript can handle many items at once, and since the browser only has to display a few items at on

[jQuery] Re: addClass and removeClass not working in IE6

2007-05-27 Thread patcoll
Thanks Brandon, that cleared it up. On May 27, 12:46 pm, "Brandon Aaron" <[EMAIL PROTECTED]> wrote: > This is an issue with your CSS. IE6 doesn't seem to like the .class#id > selector. You might need to rethink your approach. Perhaps keep the > unordered list and add the class to the li. That way

[jQuery] Re: Problem with globalEval

2007-05-27 Thread Matt Stith
The HTML comments are to hide the script from older browsers that dont understand javascript. On 5/27/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: why do you have instead of /* comments */ in a script? On 5/27/07, Network Newbie <[EMAIL PROTECTED] > wrote: > > > When the function 'globalEval' is evalu

[jQuery] Re: Image preview like TemplateMonsters.com

2007-05-27 Thread Sean Catchpole
You can try using this tooltip plugin: http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/ ~Sean

[jQuery] Re: Problem with globalEval

2007-05-27 Thread Ⓙⓐⓚⓔ
why do you have instead of /* comments */ in a script? On 5/27/07, Network Newbie <[EMAIL PROTECTED]> wrote: When the function 'globalEval' is evaluating script source that contains html comments (i.e. --modifled globalEval function that fixes the issue globalEval: function( data

[jQuery] Problem with globalEval

2007-05-27 Thread Network Newbie
When the function 'globalEval' is evaluating script source that contains html comments (i.e. --modifled globalEval function that fixes the issue globalEval: function( data ) { if ( window.execScript ) window.execScript( data.replace(/^\s*\<\!--.*

[jQuery] Re: A demo and an optimization question

2007-05-27 Thread Renato Formato
David Singleton ha scritto: I've been using jquery to build an icon picker for FAMFAMFAM's Silk icon set. I've got a working version (at http://dsingleton.co.uk/code/icon-selector/), but with 1000 images on the page everything is a little slow, i'm wondering what I can do to optomize the JS mak

[jQuery] Improved timePicker, time/datePicker demo

2007-05-27 Thread Anders
I've been working on improving Sam Collet's original timePicker. Here is the result: http://labs.perifer.se/timedatepicker/ The demo is a Google Calendar-like time/datePicker. It's far from perfect, most of the issues are with the datePicker though, which for example not yet have support for fo

[jQuery] A demo and an optimization question

2007-05-27 Thread David Singleton
Hi everyone, First of all, jquery is pretty damn awesome and has made Javascript fun. I've been using jquery to build an icon picker for FAMFAMFAM's Silk icon set. I've got a working version (at http://dsingleton.co.uk/code/icon-selector/), but with 1000 images on the page everything is a littl

[jQuery] Image preview like TemplateMonsters.com

2007-05-27 Thread Alfdesign.sk
Hi, Is there any plugin or solution to make image preview like at TemplateMonsters.com

[jQuery] Re: addClass and removeClass not working in IE6

2007-05-27 Thread Brandon Aaron
This is an issue with your CSS. IE6 doesn't seem to like the .class#id selector. You might need to rethink your approach. Perhaps keep the unordered list and add the class to the li. That way you can reference each part like this: .class #id Hope that helps. -- Brandon Aaron On 5/26/07, patcol

[jQuery] problems with thickbox and ie6

2007-05-27 Thread Tom Shafer
Thickbox in ie 6 cuts off the bottom of my page. I fixed it when it does it when loading the page bu t when thickbox closes the bottom is cut off. Here is an example http://www.thebattalion.tv/dev/bios.php Anyway to fix this. I was thing that when thickbox closes I could show and hide a div on t

[jQuery] Re: Problem with jCarousel 0.2.0 in IE tables

2007-05-27 Thread Jens
Hi Jan, That did the trick. Now it works in FireFox, IE7 and Opera. But why does it work better when / is encapsulated into divs? In FF there was no need for the div encapsulation. /Jens On 27 Maj, 12:29, Jan Sorgalla <[EMAIL PROTECTED]> wrote: > Hi > > On 27 Mai, 11:12, Jens <[EMAIL PROTECTED]

[jQuery] Re: get the current mouse position

2007-05-27 Thread Alexandre Plennevaux
did u try cluetip? HYPERLINK "http://examples.learningjquery.com/62/"http://examples.learningjquery.com/6 2/ _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alexander Petri Sent: dimanche 27 mai 2007 12:08 To: jQuery (English) Subject: [jQuery] get the current m

[jQuery] Re: get the current mouse position

2007-05-27 Thread andycjw
i am not sure whether jquery has this or not you can check out these articles that explains how to check the mouse position with just javascript (without jquery) http://www.quirksmode.org/js/events_properties.html#position http://www.quirksmode.org/dom/w3c_events.html#mousepos hope this helps O

[jQuery] Re: get the current mouse position

2007-05-27 Thread Karl Swedberg
Hi Alexander, This one is really tricky in plain JavaScript because of all the different browser implementations, but fortunately jQuery smoothes out the inconsistencies. Just add the "event" arg inside a mouse event handler's anon. function and then refer to the coordinates as event.page

[jQuery] Re: clickCount..

2007-05-27 Thread phutte
Answer to myself, after searching for the answer if one can blur() tabs in FireFox, the answer seems to be: NO!

[jQuery] Re: clickCount..

2007-05-27 Thread phutte
OOP's many of my popup-in-background works perfect, not in FireFox though. It pops to a new tab, which is not blurred. If I use other settings, than just 'window.open', like scrollbars=.. width=.. etc, it pops my new win in a new window blurred. So to redefine my question, is there any way to blu

[jQuery] get the current mouse position

2007-05-27 Thread Alexander Petri
Hi i have to build a custom tooltip how can i get the current x and y mouseposition?

[jQuery] Re: Problem with jCarousel 0.2.0 in IE tables

2007-05-27 Thread Jan Sorgalla
Hi On 27 Mai, 11:12, Jens <[EMAIL PROTECTED]> wrote: > I'm trying to use your beta 0.2.0 with jcarousel inside a table. Doing > this corrupts the table layout in IE 7. I have not tried it in other > versions of jcarousel. it seems that the width of the table cells are calculated before jcarousel

[jQuery] Re: Problem with jCarousel 0.2.0 in IE tables

2007-05-27 Thread Jens
The example shows jquery version 1.1.1, this is a copy/paste problem, I am using jquery 1.1.2 sorry... On 27 Maj, 11:12, Jens <[EMAIL PROTECTED]> wrote: > I'm trying to use your beta 0.2.0 with jcarousel inside a table. Doing > this corrupts the table layout in IE 7. I have not tried it in other

[jQuery] Problem with jCarousel 0.2.0 in IE tables

2007-05-27 Thread Jens
I'm trying to use your beta 0.2.0 with jcarousel inside a table. Doing this corrupts the table layout in IE 7. I have not tried it in other versions of jcarousel. Below is a minimized example: http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> http://www.w3.org/1999/xhtml"; xml:lang="en-u

[jQuery] Re: clickCount..

2007-05-27 Thread phutte
questions, questions, questions... patrik+javascript=false(yet); how to make my popup windows blur()? jQuery clickCount