[jQuery] sites using jQuery: www.corriere.it

2007-10-02 Thread GianCarlo Mingati
Hi all, today the new version of corriere.it, one of the most important italian news site has been released. Looking at the source code i see they're using jquery1.2, jcarousel-0.2.0 and jquery.cookie. GCM

[jQuery] Re: How to add/remove dynamic blocks of html

2007-10-02 Thread James Dempster
I'd total agree with what Michael said. Infact HTML coding guidelines and W3C Standards say that HTML quotes should be double " Also as a PHP developer I tend to use single quotes ' for programming, but that's because in PHP it doesn't use the parse engine looking for varibles, but thats a differen

[jQuery] Re: jqDnR - jQuery 1.2 and Dimensions problem

2007-10-02 Thread jim
Brandon, as soon as you have a chance can you make a note in your documentation about how this plugin has changed (been integrated into core and/or what is needed for jQuery current/1.2)? I was trying to setup a new project and wasted a bunch of time thanks!

[jQuery] Re: editease - my first plugin endeavor

2007-10-02 Thread Cees
Hi Looks just i have been waiting for , it fits my needs (or i fit in the niche ;) . Looking forward to see whats up next ! -R©M

[jQuery] Re: A Very Simple tree menu

2007-10-02 Thread Gerson Goulart
Gerson Goulart escreveu: Jörn Zaefferer escreveu: Gerson Goulart schrieb: Hi all! I'm not a programmer (and don't speak English), but I'm trying to do both. =D I'm looking for a simple solution to do a simple tree menu like the Windows Explorer during some days.

[jQuery] Re: A Very Simple tree menu

2007-10-02 Thread Gerson Goulart
Gerson Goulart escreveu: Jörn Zaefferer escreveu: Gerson Goulart schrieb: Hi all! I'm not a programmer (and don't speak English), but I'm trying to do both. =D I'm looking for a simple solution to do a simple tree menu like the Windows Explorer during some days.

[jQuery] Re: iterating through xmlResult

2007-10-02 Thread Robert Koberg
On Mon, 2007-10-01 at 15:52 -0700, Lee Hinde wrote: > Thanks. I love expanding my horizons. :-) Cool. The Mulberry XSL list is a very good resource when you are learning. Questions are answered almost immediately and intelligently. If you need to use this template more than a few times (say pagi

[jQuery] why is jquery-1.2.1.min.js 45.3KB and not 14KB

2007-10-02 Thread ghettoboy
Why is the Minified and Gzipped version of 1.2.1 show up as 45.3 and not 14KB. Am I missing something here???

[jQuery] Re: A Very Simple tree menu

2007-10-02 Thread Gerson Goulart
Gerson Goulart escreveu: Jörn Zaefferer escreveu: Gerson Goulart schrieb: Hi all! I'm not a programmer (and don't speak English), but I'm trying to do both. =D I'm looking for a simple solution to do a simple tree menu like the Windows Explorer during some days.

[jQuery] Re: What causes the speed bottleneck in Javascript?

2007-10-02 Thread Robert Koberg
On Mon, 2007-10-01 at 16:46 -0700, John Beppu wrote: > http://ejohn.org/blog/javascript-engine-speeds/ > Very interesting! I have been using rhino for a week or so. When I started looking at the results, it was very disappointing. Then I got to the real world examples. Why does rhino shine there

[jQuery] Re: jQuery Form Plugin fiasco

2007-10-02 Thread roso
Rey, I certainly appreciate the work, dedication and generosity of the JQuery team and in respect to that Mike Alsup's contributions. It's just frustrating to try all the examples in there and not to be able to get any of them to work. Roso

[jQuery] input append is not working

2007-10-02 Thread raqiro
hi, is there any explication why this row won't work: $("[EMAIL PROTECTED]'testinput']").append("test"); (accually it changes source like it had to do, but browser won't show any changes) and this works: $("[EMAIL PROTECTED]'testinput']").val("test"); input html is something like that

[jQuery] Autocomplete with dynamically generated input-fields

2007-10-02 Thread freakx0
I take dates via ajax and create for every date 2 input fields. one with the date an another empty input field. On the empty field i want to add the autocomplete plugin/ functionality. $(document).ready(function(){ $("#button").click(function(){ $.get("/test2.txt", function(text){ // a li

[jQuery] Save reference to a element

2007-10-02 Thread Greg Warner
I want a user to be able to reference (by clicking) an element on a web page and then save a reference to that element in a database for later retrieval. What's the best way to do this? (Assume that the html page will never change). I could save some sort of path (body > div > div > ul > li > a.

[jQuery] Re: How to add/remove dynamic blocks of html

2007-10-02 Thread howardk
I do occasionally look at the source code, but I'm still new enough to JavaScript that sometimes (even with 12 years of Java under my belt, and a whole slew of other languages going back some 40 years) that when I'm faced with new js constructs for the first time, about all I can do is stare glass

[jQuery] Question to experts on jQuery.

2007-10-02 Thread BAlex
Is JavaScript: var img = new Image(); img.src = "1.jpg"; var width = img.width; var height = img.height; It is necessary for preliminary loading image and, the main thing, for preliminary definition width and height. How same to represent on jQuery? In advance thanks, Alexander

[jQuery] Autocomplete with dynamically generated input-fields

2007-10-02 Thread freakx0
I take dates via ajax and create for every date 2 input fields. one with the date an another empty input field. On the empty field i want to add the autocomplete plugin/ functionality. $(document).ready(function(){ $("#button").click(function(){ $.get("/test2.txt", function(text){ // a li

[jQuery] Re: Add Table row

2007-10-02 Thread motob
Yes, this is possible. I'm doing the same type of thing on my app. You'll want to utilize the .clone() function. You could do something like this: var clonedRow = $("table tr :last).clone(); //this will grab the last table row. $("#formField", clonedRow).attr("id", "newID"); //use the selectors

[jQuery] Re: why is jquery-1.2.1.min.js 45.3KB and not 14KB

2007-10-02 Thread Mike Chabot
You are probably missing the gzip portion of it. You have to enable that feature on your Web server to gain the benefits. -Mike Chabot On 10/1/07, ghettoboy <[EMAIL PROTECTED]> wrote: > > Why is the Minified and Gzipped version of 1.2.1 show up as 45.3 and > not 14KB. Am I missing something here

[jQuery] tablesorter plugin - could be a bug

2007-10-02 Thread Web Specialist
Hi guys. I'm testing tablesorter(www.tablesorter.com) plugin to work in a huge table. Tablesorter is a nice tool. But may be I don't know how to sort date column properly. Please look this link *http://tinyurl.com/33rw7p* First column could be sortable but I don't how to do that. Could be a bug?

[jQuery] Re: simple browser check (need help)

2007-10-02 Thread Frank Tudor
Works like a charm! Thanks Wizzud :) Frank On 10/1/07, Wizzud <[EMAIL PROTECTED]> wrote: > > > > if(!$.browser.msie){ > .//bug out > } > > > FrankTudor wrote: > > > > > > I have a tool that only operates under IE > > > > So all other browser users get an alert here is my code...but it > > d

[jQuery] Re: jQuery Form Plugin fiasco

2007-10-02 Thread Rey Bango
I'm sure you do and as I said, instead of just venting on here, ask politely for some help and I'm sure Mike will jump right in. Rey... roso wrote: Rey, I certainly appreciate the work, dedication and generosity of the JQuery team and in respect to that Mike Alsup's contributions. It's just

[jQuery] Parse JSON with jQuery and JavaScript (tutorial)

2007-10-02 Thread Giant Jam Sandwich
I know. I know. More shameless self-promotion for jQuery tutorials. If there is a better place to put this, please let me know. http://blog.reindel.com/2007/10/02/parse-json-with-jquery-and-javascript/ Brian Reindel d'bug @ blog.reindel.com

[jQuery] superfish (two of them in a page??)

2007-10-02 Thread GianCarlo Mingati
Hi, i'm using the superfish menu but i'm having a big issue: if you put two menu in a page the submenus of the first one goes below the second one. Is there a way to avoid that? Suppose you have a table with three rows. On the first row (okay, TD) you put your list with nested lists. The second r

[jQuery] Re: Parse JSON with jQuery and JavaScript (tutorial)

2007-10-02 Thread george.gsgd
jQuery definitely needs a proper forum. On Oct 2, 2:40 pm, Giant Jam Sandwich <[EMAIL PROTECTED]> wrote: > I know. I know. More shameless self-promotion for jQuery tutorials. > If there is a better place to put this, please let me know. > > http://blog.reindel.com/2007/10/02/parse-json-with-jquer

[jQuery] Re: superfish (two of them in a page??)

2007-10-02 Thread Joel Birch
Hi GianCarlo, In the CSS, apply a lower z-index to the second Superfish menu and also to it's li elements. Assuming you have class="nav" on both menus, change the second one to class="nav second", then add this CSS after the main Superfish CSS: .second, .second li { z-index: 998; } That should

[jQuery] Re: superfish (two of them in a page??)

2007-10-02 Thread GianCarlo Mingati
thank you Joel, i'll check this out GC On Oct 2, 4:15 pm, "Joel Birch" <[EMAIL PROTECTED]> wrote: > Hi GianCarlo, > > In the CSS, apply a lower z-index to the second Superfish menu and > also to it's li elements. Assuming you have class="nav" on both menus, > change the second one to class="nav s

[jQuery] Re: superfish (two of them in a page??)

2007-10-02 Thread GianCarlo Mingati
It works! Thanks alot Joel. GC On Oct 2, 4:15 pm, "Joel Birch" <[EMAIL PROTECTED]> wrote: > Hi GianCarlo, > > In the CSS, apply a lower z-index to the second Superfish menu and > also to it's li elements. Assuming you have class="nav" on both menus, > change the second one to class="nav second",

[jQuery] Re: input append is not working

2007-10-02 Thread Wizzud
The definition of the append() method is: "Append content to the inside of every matched element". So what your script ... $("[EMAIL PROTECTED]'testinput']").append("test"); ...is trying to do is insert the paragraph within the input field eg. something like test"); If you are just trying to se

[jQuery] Accordion UI hides BR's and more

2007-10-02 Thread [EMAIL PROTECTED]
Hi there, I'm usign gmaps with Jquery Accordion UI to diplay info by region, inside every accordion tag I've got a list of Vcards for different locations. I don't know why but when I look and the code of the page some elements render like this: so I'm missing line breaks and this also happens wi

[jQuery] Re: script within ajax html response

2007-10-02 Thread MHM
Anyone have any solution to my fiasco??? On Sep 27, 7:08 pm, MHM <[EMAIL PROTECTED]> wrote: > Hi, > > I am working on a website using jquery for ajax with various other > jquery plugins. In my app, when making ajax queries for forms, i > return back the complete form as html since it carries info

[jQuery] Re: Question to experts on jQuery.

2007-10-02 Thread Flesler
You want to save the real height/width to a variable, or to set it programatically? if you want to retrieve the real attributes you will need to check, only after the image has loaded (on the event onload): something like this. var width, height; var $img = $(') .load(functi

[jQuery] Newbie question

2007-10-02 Thread Johny
Hi, I have style defined like this div#Explanation{position:absolute; top:720px; width:10px; right: 0px;margin:40px 0 0 0;} and my HTML code * Login Popis * Password and I would like to add Explanation style to my using jQuery. Is that possible? Thanks

[jQuery] Re: jqDnR - jQuery 1.2 and Dimensions problem

2007-10-02 Thread Flesler
I updated to the new version and the numbers changed. I had a div with position relative, inside an ul/li with images, and a scrollTo plugin I made worked fine, after the update, I was forced to make the ul position absolute. I think that was the situation, I might be wrong, but I'm sure about the

[jQuery] Re: jquery math functions?

2007-10-02 Thread Flesler
http://www.w3schools.com/jsref/jsref_obj_math.asp On Oct 1, 7:21 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > FrankTudor wrote: > > Is there a place that I can see the math functions available? > > > Frank > > That's POSJ (Plain Old Simple JavaScript), no need for jQuery here, for > example: > >

[jQuery] Re: Save reference to a element

2007-10-02 Thread Flesler
What about adding and ID attribute to any node you are interested in. on click, post the id to your server or something like that. Then you can match the element using $('#id_of_the_element'). I hope that helps. On Oct 2, 2:11 am, "Greg Warner" <[EMAIL PROTECTED]> wrote: > I want a user to be abl

[jQuery] Catfish Advert Plugin

2007-10-02 Thread Kia Niskavaara
I'm unable to download the Catfish Advert Plugin from http://www.jqueryplugins.com/plugins/view/1/ - does anyone have the source? Kia

[jQuery] Re: Quick straw pole about maps

2007-10-02 Thread Phunky
it would be REALLY nice if there was some form of documentation for this plugin, can anyone point me in the right direction? I cant seem to find either a demo or a helpful description for how to use this plugin.

[jQuery] Is this possible with jQuery?

2007-10-02 Thread Johny
Hi, I have style defined like this div#Explanation{position:absolute; top:720px; width:10px; right: 0px;margin:40px 0 0 0;} and my HTML code * Login Popis * Password and I would like to add Explanation style to my using jQuery. Is that possible? Thanks

[jQuery] Can jQuery help?

2007-10-02 Thread Johny
Hi, I have style defined like this div#Explanation{position:absolute; top:720px; width:10px; right: 0px;margin:40px 0 0 0;} and my HTML code * Login Popis * Password and I would like to add Explanation style to my using jQuery. Is that possible? Thanks

[jQuery] Re: Parse JSON with jQuery and JavaScript (tutorial)

2007-10-02 Thread Karl Swedberg
Hi Brian, As someone who has written a few tutorials, I know how much time and effort has to go into them. So hat's off to you for writing another great one. Keep them coming. And, if you're ever interested in posting tutorials on learningjquery.com, let me know. I'd be thrilled to have y

[jQuery] Re: Newbie question

2007-10-02 Thread Glen Lipka
Im not understanding. If you have that CSS, it's applied to the id="Explanation". What do you want to add? Glen On 10/2/07, Johny <[EMAIL PROTECTED]> wrote: > > > Hi, > I have style defined like this > > div#Explanation{position:absolute; top:720px; width:10px; right: > 0px;margin:40px 0 0 0;}

[jQuery] 1.2 and XPath Contains Predicate Selector

2007-10-02 Thread corpore
..mmh, have a bit of a problem with the XPath Contains Predicate Selector.. Updating code based on jQuery-1.1.3 to jQuery-1.2.1 and changing aforementioned selectors I've found that where something like this used to work: $("[EMAIL PROTECTED] *= smenu]") the, obviously only apparent, equivale

[jQuery] [ANNOUNCE] Don't forget about jQuery books

2007-10-02 Thread Rey Bango
Guys, whether you're new to jQuery or a seasoned vet, it's always good to have reference material to help you out. So don't forget that there are 3 books available to jQuery developers. The newest book, jQuery in Action by Bear Bibeault and Yehuda Katz, is set to be officially released in De

[jQuery] prototype sound

2007-10-02 Thread weepy
Hi I was justing looking at sound for jquery and I came across this from Prototype. I'm no expert - how would you convert this to jquery ? http://trac.wordpress.org/browser/trunk/wp-includes/js/scriptaculous/sound.js?rev=5596 weepy *...(

[jQuery] Re: Parse JSON with jQuery and JavaScript (tutorial)

2007-10-02 Thread Giant Jam Sandwich
Hey Karl, Thanks! I will definitely keep that in mind. For some reason I thought learningjquery.com was like a week or two course. Now I see that you are posting ongoing goodness I will be stopping in more often :) Brian On Oct 2, 9:59 am, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Hi Brian, >

[jQuery] jquery + adobe air: getting started?

2007-10-02 Thread Jack Killpatrick
Hi All, Anyone know of some blog entries, tutorials, etc (other than the general stuff at Adobe Labs) that might help me get started "migrating" a jquery-based HTML app to the Adobe AIR runtime? I'm looking for jquery-specific tips, examples, etc. My app does a lot of ajax calls that send j

[jQuery] Re: Is this possible with jQuery?

2007-10-02 Thread Loren Pipes
Sure, do something like this: $('#Explanation').css({ position : 'absolute', top : '720px', right : '0px', width : '10px', margin : '40px 0 0 0' }); VP

[jQuery] Why doesn't work in IE ?

2007-10-02 Thread Owca
This line crashes all my jQuery scripts in IE only: $("[EMAIL PROTECTED]").var = state; Part of my code: var state = $("[EMAIL PROTECTED]:checked").val(); $("[EMAIL PROTECTED]").var = state; I want to set value of hidden input named "breakfast". Please explain me why.

[jQuery] jQuery.get( uri of CSS resources, callback ) ?

2007-10-02 Thread jldupont
Hi - is there any plans to support the dynamic loading of CSS resources ? Thanks, Jean-Lou Dupont.

[jQuery] How to dynamically add a rel="mylink"?

2007-10-02 Thread Eric
I understand how to add a class to existing href tags, for example $("a").addClass("myclass"); I would also like to be able to add a 'rel' attribute to the href tags, dynamically using jQuery. For example, my html would have existing: The jQuery then adds "myclass" but I also want to add

[jQuery] Re: How to dynamically add a rel="mylink"?

2007-10-02 Thread Benjamin Sterling
Eric, $('a').addClass("myclass").attr('rel','myotherlink'); should do ya. On 10/2/07, Eric <[EMAIL PROTECTED]> wrote: > > > I understand how to add a class to existing href tags, for example > > $("a").addClass("myclass"); > > I would also like to be able to add a 'rel' attribute to the href > tag

[jQuery] Re: Why doesn't work in IE ?

2007-10-02 Thread Jack Killpatrick
try: $("[EMAIL PROTECTED]").val(state); - Jack Owca wrote: This line crashes all my jQuery scripts in IE only: $("[EMAIL PROTECTED]").var = state; Part of my code: var state = $("[EMAIL PROTECTED]:checked").val(); $("[EMAIL PROTECTED]").var = state; I want to set value of hidden input na

[jQuery] .is() cannot check against the parent chain?

2007-10-02 Thread Matt Kruse
It seems that I have a misunderstanding about how .is() worked. Given this html: Test DIV I was expecting this: alert( $('#x').is('div:not(.test) div') ); to return "false". Instead, it returns true. Can I not check for parent conditions in .is()? I see that according to the docs

[jQuery] Re: jquery + adobe air: getting started?

2007-10-02 Thread Andy Matthews
If anyone sends you something offlist, please post it back here. I'm also VERY interested in learning this type of development. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jack Killpatrick Sent: Tuesday, October 02, 2007 11:13 AM To: jquery-

[jQuery] Re: Catfish Advert Plugin

2007-10-02 Thread sozzi
Hmm seems the demos etc don't work. The only place I could find it with a short search was here: http://www.nextbbs.com/trac/nbbs/browser/trunk/helpers/extjs/plugins/jquery.catfish.js?rev=27 And I'm not exactly sure if that is the last version. On Oct 2, 6:12 am, Kia Niskavaara <[EMAIL PROTECTE

[jQuery] Re: 1.2 and XPath Contains Predicate Selector

2007-10-02 Thread Karl Swedberg
Hi there, In 1.2.x, you would use the CSS equivalent: $("a[id *= smenu]") Or, you could use the Basic XPath plugin. http://jquery.com/plugins/project/xpath Hope that helps, --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Oct 2, 2007, at 11:54

[jQuery] Re: jquery + adobe air: getting started?

2007-10-02 Thread Jake McGraw
A free copy of AIR for JavaScript Developers is available here: http://tinyurl.com/23uqqj [ajaxian.com] As jQuery ajax functions work within Safari (Webkit), there should be no major overhauls necessary for your app. Simply generate a static HTML representation of your application and include it

[jQuery] Re: [SITE SUBMISSION] Kuantic.com

2007-10-02 Thread polyrhythmic
Looks clean, but je ne parle pas francais, monseiur. A description would be excellent. What is being used on the backend?? The site is very wide though, too much for my 1024x1280 screen. (I run a vertical screen to make coding easier.) Charles @doublerebel.com On Oct 1, 12:44 pm, "Rick Fair

[jQuery] Re: What plugins are ready for prime time

2007-10-02 Thread Jörn Zaefferer
David Pollak schrieb: On Oct 1, 12:48 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: David Pollak schrieb:> although I had to rewrite all the $ references to jQuery so I could fit Scriptaculous, jQuery, and BlockUIin the same browser. Why that? BlockUI uses a handy trick to be able to use

[jQuery] Re: Catch a click event before the DOM is loaded

2007-10-02 Thread polyrhythmic
Remy, I like your very simple solution, queuing events to be processed once the DOM is ready. Two questions, though: 1. Why not use "if ($.isReady === true) " ? Were you getting a value for $.isReady besides 'undefined'? 2. Will you run into any problems if a user clicks a button multiple tim

[jQuery] Resize Table Cells

2007-10-02 Thread Glen Lipka
Let's say I have a table with 4 cells North-West North East South West SouthEast And the effect I want is to be able to resize the table cells. (Height/Width.) And also possibly resize the entire table. I want to do this with drag and drop. What plugins would I need

[jQuery] Re: A Very Simple tree menu

2007-10-02 Thread Jörn Zaefferer
sgrover schrieb: So far it's bug free. (other than user caused bugs). What would that be? Good software helps users avoid "bugs"... -- Jörn

[jQuery] Re: jshArea - JavaScript Hacking Area

2007-10-02 Thread polyrhythmic
Phew, do you use that as a bookmarklet? Why not use Firebug or IE Web Developer to get a console? Whatever console you use, loading jQuery is as easy as adding script tags that link to a jQuery library. I know that there's some ScriptMonkey code out there that'll enable jQuery on any page, but

[jQuery] Re: A Very Simple tree menu

2007-10-02 Thread Jörn Zaefferer
Gerson Goulart schrieb: Jörn Zaefferer escreveu: Gerson Goulart schrieb: Hi all! I'm not a programmer (and don't speak English), but I'm trying to do both. =D I'm looking for a simple solution to do a simple tree menu like the Windows Explorer during some days. All solutions I find a

[jQuery] Re: Resize Table Cells

2007-10-02 Thread Glen Lipka
Better example: http://commadot.com/jquery/tableResize.php I want to resize the cells that are silver with the gray borders. Glen On 10/2/07, Glen Lipka <[EMAIL PROTECTED]> wrote: > > Let's say I have a table with 4 cells > > > North-West > North East > > > South West >

[jQuery] Re: jquery + adobe air: getting started?

2007-10-02 Thread Jack Killpatrick
Thanks Jake, At this risk of getting too off-topic, I don't *think* that will work for my scenario, which is an app that does a lot of jquery ajax stuff with json. In particular, there is a sandbox that some of it will have to live in: http://labs.adobe.com/wiki/index.php/AIR:HTML_Security_

[jQuery] Masked Input Plugin 1.1

2007-10-02 Thread Josh Bush
I just released version 1.1 of my Masked Input Plugin for jQuery. I have more features in the pipeline to add to 1.2, but I wanted to get a few fixes out the door before doing so. The only thing new this time is an unmask method. In addition to code changes, I've made a few more enhancements. I'v

[jQuery] Re: jquery + adobe air: getting started?

2007-10-02 Thread Rey Bango
Hi Jack, Before Beta 2 and the new security features, doing that would've been trivial. With the new features, I don't believe you'll be able to just have one codebase for your app since the sandboxes are built in a way that require you to use the built-in APIs to do things like Ajax calls.

[jQuery] [SITE SUBMISSION]: perian.com

2007-10-02 Thread Karl Swedberg
I just went to http://www.perian.com to download the "free, open source QuickTime component that adds native support for many popular video formats" for Mac OS X, and discovered that the site uses jQuery, along with Klaus's Tabs plugin. --Karl _ Karl Swedberg www.englishrul

[jQuery] Re: jquery + adobe air: getting started?

2007-10-02 Thread Jack Killpatrick
Thanks Rey. Finding out whether the usual jquery $.getJson and such will work from inside the (beta 2) sandbox (or some other way via the sandbox bridge) is my first task. If someone knows that, it'd save me some experimentation time. I dread the thought of converting code to the AIR native a

[jQuery] Re: jquery + adobe air: getting started?

2007-10-02 Thread Andy Matthews
Thanks Jake. I'll check that out. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jake McGraw Sent: Tuesday, October 02, 2007 12:19 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: jquery + adobe air: getting started? A free copy of AIR

[jQuery] Re: Masked Input Plugin 1.1

2007-10-02 Thread Glen Lipka
I love this plugin. Great improvements. I wish I had it 4 months ago! :) Glen On 10/2/07, Josh Bush <[EMAIL PROTECTED]> wrote: > > > I just released version 1.1 of my Masked Input Plugin for jQuery. I > have more features in the pipeline to add to 1.2, but I wanted to get > a few fixes out the

[jQuery] Re: How to add/remove dynamic blocks of html

2007-10-02 Thread Matt
thank you guys, I really appreciate your comments and insight! On Oct 1, 10:05 pm, howardk <[EMAIL PROTECTED]> wrote: > I do occasionally look at the source code, but I'm still new enough to > JavaScript that sometimes (even with 12 years of Java under my belt, > and a whole slew of other languag

[jQuery] Re: What plugins are ready for prime time

2007-10-02 Thread David Pollak
lift is a secure, easy, powerful web framework built using the Scala Functional/OO language. See http://liftweb.net On Oct 2, 10:26 am, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > David Pollak schrieb: > > > > > On Oct 1, 12:48 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > > >> David Pollak sc

[jQuery] Re: Question to experts on jQuery.

2007-10-02 Thread BAlex
552464979 Has made: var width, height; var img0 = $("").load(function(){ width = $(this).width(); height= $(this).height(); }).attr("src", "1.jpg"); alert("//--> img0=" + img0 + ", w=" + width + ", h=" + hei

[jQuery] Events: load and unload for $("#a").html(myHtmlString)

2007-10-02 Thread Robert Koberg
Hi, I want to bind events when certain elements are added to the HTML DOM. The elements are assembled as strings and then set with jquery methods like .html(htmlString), .append(htmlString). It looks like this is the job of the jquery load event. I want to unbind events when the elements are rem

[jQuery] $(document).scroll() not functioning in IE?

2007-10-02 Thread Paul Irish
I added some fun infinite scroll functionality to my employer's blog. http://molecularvoices.molecular.com/ All of it is based on a $(document).scroll() event that doesn't seem to fire in IE6 or 7. My alert() debugging shows that IE won't enter into the function attached to the scroll event.. You

[jQuery] Re: What causes the speed bottleneck in Javascript?

2007-10-02 Thread Derek Gathright
Thanks for the link, interesting stuff. After looking through info on Rhino, I was left with the question... why build the JS core engine in Java and not a non-interpreted language? Then I looked at info in Spidermonkey (a C re-write for Firefox 3) and saw they realized the same thing. Hopefully

[jQuery] Re: Question to experts on jQuery.

2007-10-02 Thread BAlex
Has made: var width, height; var img0 = $("").load(function(){ width = $(this).width(); height= $(this).height(); }).attr("src", "1.jpg"); alert("//--> img0=" + img0 + ", w=" + width + ", h=" + height); Has

[jQuery] Re: why is jquery-1.2.1.min.js 45.3KB and not 14KB

2007-10-02 Thread [EMAIL PROTECTED]
Mike, you can tell me please how can i verify if gzip is enabled? Thanks! On Oct 2, 3:49 pm, "Mike Chabot" <[EMAIL PROTECTED]> wrote: > You are probably missing the gzip portion of it. You have to enable > that feature on your Web server to gain the benefits. > > -Mike Chabot > > On 10/1/07, ghet

[jQuery] Re: A Very Simple tree menu

2007-10-02 Thread sgrover
Invalid nesting of the lists... i.e. Sub 1 Sub 2 Of course, the inner UL should be within the first LI tags... The tree still works with this, but you get little breaks in the lines. It's not valid XHTML though so should be fixed. But it's not something the tree should fi

[jQuery] $(document).scroll() not functioning in IE?

2007-10-02 Thread Paul Irish
I added some fun infinite scroll functionality to my employer's blog. http://molecularvoices.molecular.com/ All of it is based on a $(document).scroll() event that doesn't seem to fire in IE6 or 7. My alert() debugging shows that IE won't enter into the function attached to the scroll event.. You

[jQuery] Closing a Custom Modal/Dialog Window

2007-10-02 Thread [EMAIL PROTECTED]
Hello, I am having a head scratcher that maybe someone on this list can help me with. I have a 'more' link that opens a dialog window. Inside the dialog window is a close link to close the dialog window. The close link does not work. Here is the code that opens the dialog window: $('.more-link

[jQuery] Re: Debugging in Safari 2

2007-10-02 Thread Gordon
I did solve the problem eventually but only by commenting out all the code and uncommenting it again one line at a time until I hit the one that was causing the code to fail. Safari 2 just doesn't seem to have any proper debugging tools. On Oct 2, 4:53 am, MichaelEvangelista <[EMAIL PROTECTED]>

[jQuery] Re: jquery + adobe air: getting started?

2007-10-02 Thread Rey Bango
Yep I sure did. Here's the right link: http://ajaxian.com/archives/a-breath-of-fresh-air-from-adobe Rey Jack Killpatrick wrote: Thanks Rey. Finding out whether the usual jquery $.getJson and such will work from inside the (beta 2) sandbox (or some other way via the sandbox bridge) is my fi

[jQuery] Re: why is jquery-1.2.1.min.js 45.3KB and not 14KB

2007-10-02 Thread Andy Matthews
There's a link to gzip instructions right next to the download link for that file. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, October 02, 2007 12:47 PM To: jQuery (English) Subject: [jQuery] Re: why is jquer

[jQuery] Slide up/down bug with table data in IE7

2007-10-02 Thread Andy Matthews
I have a module which contains a table of information. When I slide the module (to hide the info) it works just fine. When I slide it back down (to display the data) the table disappears. Is this a bug or a "feature"? Whatever it is, I need a fix for it. Anyone have any ideas? _

[jQuery] Re: Slightly OT: another way to gzip javscript code

2007-10-02 Thread polyrhythmic
He seems to come to the same common conclusion: It's best to pack or minify your JS and then serve it to the browser through mod_gzip, htaccess controls, or Apache settings. I personally prefer Minify (http://code.google.com/p/minify) + ob_gzhandler in my PHP, so that the JS & CSS is minified an

[jQuery] Re: why is jquery-1.2.1.min.js 45.3KB and not 14KB

2007-10-02 Thread Glen Lipka
Personally, I never understood where to put that script. I ended up doing it another way. 1. Rename the JavaScript files from .js to .php. All of them. (And reference them in my html with php, not js.) 2. At the top of each JS, I put 3. At the bottom of each JS, I put This is a lit

[jQuery] 1.2 bug? $(window).height(); always the same as $('body').height();

2007-10-02 Thread mundizzle
I have a page with content that goes below the fold. I'm trying to calculate the height of the browser's viewable area this way... $(window).height(); ...but it always returns the height of the whole page (above and below the fold) - the same value as $('body').height(); Is this correct behavi

[jQuery] Re: Can jQuery help?

2007-10-02 Thread Matt Stith
try $("#Explination").addClass("Explination"); On 10/2/07, Johny <[EMAIL PROTECTED]> wrote: > > > Hi, > I have style defined like this > > div#Explanation{position:absolute; top:720px; width:10px; right: > 0px;margin:40px 0 0 0;} > > and my HTML code > > > > > > * > Login size="30"

[jQuery] Re: Can jQuery help?

2007-10-02 Thread Wizzud
I'm not entirely clear what you're asking here. You have a style defined for div#Explanation and you have a div with the id of Explanation - so the style will be applied to the div. I don't see where jQuery comes into it all. However, *if* what you really want is to apply all the properties of t

[jQuery] Re: What plugins are ready for prime time

2007-10-02 Thread Jörn Zaefferer
David Pollak schrieb: lift is a secure, easy, powerful web framework built using the Scala Functional/OO language. See http://liftweb.net Thanks David. I forgot the hint about Scala, that should have helped finding it. Gonna take a look at it. Scala is a very interesting platform, the integ

[jQuery] Re: A Very Simple tree menu

2007-10-02 Thread Jörn Zaefferer
sgrover schrieb: Invalid nesting of the lists... i.e. Sub 1 Sub 2 Of course, the inner UL should be within the first LI tags... The tree still works with this, but you get little breaks in the lines. It's not valid XHTML though so should be fixed. But it's not something

[jQuery] Re: why is jquery-1.2.1.min.js 45.3KB and not 14KB

2007-10-02 Thread Mike Chabot
I set up gzip IIS for the entire Web site. http://msmvps.com/blogs/omar/archive/2006/08/10/107226.aspx http://www.dotnetjunkies.com/HowTo/16267D49-4C6E-4063-AB12-853761D31E66.dcik http://weblogs.asp.net/owscott/archive/2004/01/12/57916.aspx -Mike Chabot On 10/2/07, Glen Lipka <[EMAIL PROTECTE

[jQuery] Re: Masked Input Plugin 1.1

2007-10-02 Thread Jörn Zaefferer
Josh Bush schrieb: I just released version 1.1 of my Masked Input Plugin for jQuery. I have more features in the pipeline to add to 1.2, but I wanted to get a few fixes out the door before doing so. The only thing new this time is an unmask method. In addition to code changes, I've made a few m

[jQuery] Re: Question to experts on jQuery.

2007-10-02 Thread polyrhythmic
You have to specify the image source, otherwise you are loading nothing. The code should read: var $img0 = $("").load( .. Charles On Oct 2, 9:55 am, BAlex <[EMAIL PROTECTED]> wrote: > Has made: > > var width, height; > var img0 = $("").load(function(){ >

[jQuery] Re: Quick straw pole about maps

2007-10-02 Thread polyrhythmic
+1 Google Maps. Can't speak for Yahoo maps but I've had a really easy time with Google Maps, with or without jQuery. There's tons of good documentation and tutorials, I've even made custom icon markers and search-by-distance without too much trouble. Charles doublerebel.com On Oct 2, 7:52 am

[jQuery] Re: : perian.com

2007-10-02 Thread polyrhythmic
Oops, couldn't follow the link. Looks like it's http://www.perian.org , not .com Charles

  1   2   >