[jQuery] Re: Need to attach .click() event to HTML anchor link but it won't stop bubbling...

2007-05-06 Thread Ian Struble
You can also try to attach a single event handler to the root node of your tree and then only process the clicks on A-tags. function iEatEventsForBreakfast(event) { var target = $(target.event); if (target.is(a)) { // search for and open/close the folder associated with target //

[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-05-06 Thread arnaud sellenet
Hi This seems to have been lost in a previous thread so I send it again. http://www.southolidays.com/ Uses jQuery for the calendar page (example : http:// www.southolidays.com/en/calendarview/SL0157 ). I'm using a prototype modalbox that should be replaced soon so that the whole site relies

[jQuery] find() in namespaced tags

2007-05-06 Thread cesare
Hello, I am trying to get the content of a namespaced tag like: tag ns:tagmy content/ns:tag $(tag).each ( function () { $(this).find(ns:tag);// is void $(this).find(tag);// is void $(this).find(NS:TAG);// is void...tried 'cause I noticed that Firefox shows it uppercased in the

[jQuery] Re: jquery.com - hacked?

2007-05-06 Thread Matt Stith
o.O that doesnt look good... On 5/6/07, MrNase [EMAIL PROTECTED] wrote: What happened to jquery.com?

[jQuery] Re: jquery.com - hacked?

2007-05-06 Thread Brad Perkins
This was posted yesterday. http://groups.google.com/group/jquery-en/browse_thread/thread/a1f207a25636fb41/f9ab9f41809c65fa?lnk=gstq=site+downrnum=2#f9ab9f41809c65fa On 5/6/07, Matt Stith [EMAIL PROTECTED] wrote: o.O that doesnt look good... On 5/6/07, MrNase [EMAIL PROTECTED] wrote:

[jQuery] Selecting the First of Many input types with jQuery

2007-05-06 Thread S. Robert James
I'd like to select the first text input, password input, or textarea on the page. Only those three types of elements, and only the first one. $([EMAIL PROTECTED]'text']:first, [EMAIL PROTECTED]'password']:first, textarea:first) is close, but not exact - it will take the first text input, and

[jQuery] Following link with jQuery

2007-05-06 Thread S. Robert James
Is there any way to have jQuery simulate the click event, to the point of even following the link? $(...).click() will trigger other events, but not follow the link - I'm looking for a complete click simulation. (There must be some way using JavaScript - I know Selenium simulates this...)

[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-05-06 Thread westamastaflash
I used jQuery for http://westphotoinc.com I really liked the interface plugin's slider bar, it works great and looks the same on all browsers, unlike browser scrollbars. I didn't use too many of the effects, but it's nice for a few of the pages where i need to toggle images based on the thumbs

[jQuery] NEED HELP WITH IE PROBLEMS.

2007-05-06 Thread Paulo Gabriel Antunes
Hey everyone. This is my test site: www.svplace.com/teste the function to load content into a div is working well on Firefox, but it doesn't on IE This is the load function: http://www.svplace.com/teste/load.js I got this function from this site: http://education.llnl.gov/jQuery/ which, by

[jQuery] Re: jquery.com - hacked?

2007-05-06 Thread Nathaniel Whiteinge
Sat. May 5th 6pm: We suffered our second DDOS attack today and our host has asked us to no longer host the jQuery site with them. Effective immediately they have shut down all services on the jQuery server and asked us to leave. This has taken us completely by surprise and we're working

[jQuery] Re: jquery.com - hacked?

2007-05-06 Thread spl1nter
On May 6, 7:42 pm, Nathaniel Whiteinge [EMAIL PROTECTED] wrote: Sat. May 5th 6pm: We suffered our second DDOS attack today and our host has asked us to no longer host the jQuery site with them. Effective immediately they have shut down all services on the jQuery server and asked us to

[jQuery] Re: jquery.com - hacked?

2007-05-06 Thread Fil
I've updated the main page of the jQuery site with a description of what's going on (may, or may not, work depending on your DNS I've translated this on http://www.jquery.info/

[jQuery] Re: image replacement

2007-05-06 Thread joomlafreak
On May 6, 12:38 am, Equand [EMAIL PROTECTED] wrote: hi all, i'm a newbie in javascript and jquery also. could you please help i'm trying to write a function to do onclick of a div called img to change img in div called 'preview' how do i make it replace with an image which is taken from a

[jQuery] DDoS attack to Jquery can be effectively prevented by ...

2007-05-06 Thread Galen
using a webserver that can do IP level throttling (Bandwidth and Request Rate) see this one, http://litespeedtech.com/ http://litespeedtech.com/products/webserver/overview/ . it can also do throttling differently for dynamic and static content requests. We are using this web server and

[jQuery] Temporary jQuery Download Hosting

2007-05-06 Thread Matt Hall
Hi my name is Matt and i work for BrainServers.net and we were wondering if you would like us to temporary offer the downloads of jQuery while you guys move servers. Just email me if you are interested and i can arrange the links. Matt BrainServers.net

[jQuery] Re: DDoS attack to Jquery can be effectively prevented by ...

2007-05-06 Thread Equand
any not so hard ddos which is prevented by a webserver or is a little more hard for a webserver can be prevented by a simple ipfw rule actually. On May 6, 11:05 pm, Galen [EMAIL PROTECTED] wrote: using a webserver that can do IP level throttling (Bandwidth and Request Rate) see this one,

[jQuery] Re: frameReady some time crash?

2007-05-06 Thread Daemach
After thinking about this, if frameReady can't load any specified scripts it will continue to wait ad infinitum - it waits for the test function to become available before it finishes. I need to time that out at some point... By default frameReady attempts to load jQuery in the target frame

[jQuery] Re: jquery.com - hacked?

2007-05-06 Thread Karl Swedberg
nope. it wasn't dreamhost. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On May 6, 2007, at 4:42 PM, Matt Stith wrote: for some reason im leaning toward dreamhost, they have a bad rep when it comes to these things

[jQuery] Is there a standard way for a child object to reference a parent object?

2007-05-06 Thread Daemach
I am finally figuring objects out - yay :) If I use a constructor to create a new object (car), I can refer to its properties and methods from within that object with this (this.model). If I set one if its properties (this.engine) to another new object (new engine()), is there a standard way to

[jQuery] Re: $.post send data problem

2007-05-06 Thread Equand
maybe try $_REQUEST[''] ??? On May 7, 12:30 am, Tamm [EMAIL PROTECTED] wrote: Hi I'm feeling very stupid asking this but here goes: I'm sending something like this $.post(/scripts/login.php,{u:USER,p:PASS,r:STAY},function(txt) {$(div#+div).html(txt);}); but the php $_POST[''] array get's

[jQuery] Re: Is there a standard way for a child object to reference a parent object?

2007-05-06 Thread nick name
Hey, I just started using jquery so not to sure, however I use Base.js http://dean.edwards.name/weblog/2006/03/base/ It gives alot of oo features and solves your issue above. To do it in jquery I'II have to do some more reading Hopes this helps On May 7, 8:19 am, Daemach [EMAIL PROTECTED]

[jQuery] append and templates

2007-05-06 Thread nick name
Hi, Can you use append like a string builder class and then pass it e.g. var text = new ?? text.append(blah); text.append(Oh); return text.toString(); can this be achieved or do I need to build my own method? Thanks

[jQuery] Re: Where and how to download jQuery?

2007-05-06 Thread Rey Bango
The jQuery site is being moved to a new server due to our existing hosting provider shutting us down without notice due to a DDOS attack. John Resig, project lead, discusses it further here: http://groups.google.com/group/jquery-en/browse_thread/thread/7214ba2822a77baf The site does have a

[jQuery] Re: Temporary jQuery Download Hosting

2007-05-06 Thread Rey Bango
Hi Matt, Man we really appreciate you helping us out. While we did get a temp spot up and running quickly, it was VERY cool of you to offer your assistance. We really appreciate your help. Rey... Matt Hall wrote: wow i've got horrible timing, you guys just put your downloads back up.

[jQuery] Re: Is there a standard way for a child object to reference a parent object?

2007-05-06 Thread Daemach
This is more of a base javascript question - it's not specific to jQuery. In the HTML DOM, if I'm inside an iframe this refers to the local window and I can refer to my parent using parent. I just want to know if there is something similar for functions running inside of objects that are

[jQuery] Re: Is there a standard way for a child object to reference a parent object?

2007-05-06 Thread Karl Rudd
The short answer is no. JavaScript doesn't have a built in idea of any sort of class hierachy. The method you talked about (passing in a reference) is one of the simplest (and probably easiest) ways to get hierachy/nesting into JavaScript. What marks is pointing too is a library that allows

[jQuery] $().click()?

2007-05-06 Thread Brian Ronk
I wanted to look something up, but since the site is moving hosts right now, that makes it a little hard :) is click() an available function? I wanted to add an event to a div that made an area visible to do some editing. I know I could just to an onclick method, but I wanted to try adding

[jQuery] Re: $().click()?

2007-05-06 Thread Karl Rudd
Yes. You can use it like this: $('#myDIV').click( function() { // this now points to the DIV }); Karl Rudd On 5/7/07, Brian Ronk [EMAIL PROTECTED] wrote: I wanted to look something up, but since the site is moving hosts right now, that makes it a little hard :) is click() an

[jQuery] Re: $().click()?

2007-05-06 Thread David
hi Brian, Yes, click() is a valid function. Even though the jQuery site is down you can access the documentation at a number of other places. My favourites are: The jQuery API Browser http://jquery.bassistance.de/api-browser/ and Visual jQuery http://www.visualjquery.com Regards, David

[jQuery] Re: image replacement

2007-05-06 Thread Equand
http://nosite.ru/HU/ so as you see i figured most of it... except the transition... it bugs by displacing... and doesn't seem to work correctly, i wanted to on load of new to fade out the old and fade in the new... if you look in the code u can see this, thanx in advance

[jQuery] Re: Temporary jQuery Download Hosting

2007-05-06 Thread BAW
Is there a temporary link for the Downloads from the: http://jquery.com/demo/thickbox/ link? Thank you in advance! On May 6, 6:00 pm, Rey Bango [EMAIL PROTECTED] wrote: Hi Matt, Man we really appreciate you helping us out. While we did get a temp spot up and running quickly, it was VERY

[jQuery] retrive how bytes are loaded...possible?

2007-05-06 Thread amircx
hey. can i return in jquery how mutch bytes are loaded ? in that way i can do instad of Loading. message i can calculate precents is that possible somehow to do somthing like: loading...33% -- View this message in context:

[jQuery] Re: Temporary jQuery Download Hosting

2007-05-06 Thread Matt Hall
i don't have a mirror of it but the jQuery team might On May 6, 9:59 pm, BAW [EMAIL PROTECTED] wrote: Is there a temporary link for the Downloads from the: http://jquery.com/demo/thickbox/ link? Thank you in advance! On May 6, 6:00 pm, Rey Bango [EMAIL PROTECTED] wrote: Hi Matt,

[jQuery] Re: jquery.com - hacked?

2007-05-06 Thread Erik Beeson
PPPS. I could go on, but my kid is screaming , I WANT MACARONI AND CHEESE right in my ear. I haven't seen that movie yet... --Erik

[jQuery] Re: JavaScript in loaded page with .load() init order

2007-05-06 Thread ATom
Simpler question: I load page with .load() function which contains external script with initialisation variable var SmileySupport = ... after it is inlince script which use SmileySupport, but FF show this: SmileySupport is not defined. Why? Here is example: