[jQuery] Re: Web 2.0 is vulnerable to attack

2007-04-03 Thread Wil Stuckey
On 4/3/07, Pedro Luz [EMAIL PROTECTED] wrote: javascript also as the SOP (same origin policy) actually it doesn't, this is how google adsense for example works. w

[jQuery] got 2 bad http request when load jquery in ie6

2007-04-03 Thread 7even
i use http watch for test my web site and i got 2 line of bad request after jquery,: 00:00:00.045 0.017 * GET (Error 0x57)* http://:/ 00:00:00.063 0.000 * GET (Error 0x57)* http://:/ and it also happened when i watch jquery.com is this a bug?or

[jQuery] Re: Web 2.0 is vulnerable to attack

2007-04-03 Thread Kenneth
I don't doubt that someone put alot of time into this particular FUD piece, but once again (just like all the other articles on this subject), no proof is given. If it's so easy, have it read an arbitrary email from my GMail and THEN I will take the arguments seriously. In the mean time, I laugh

[jQuery] Re: Masked Input Plugin Beta 1

2007-04-03 Thread David Duymelinck
It's a nice plugin and i'm going to use it but my only problem with it is that you can't set the highest number for example i want to use it to guided users to fill in a date so it would be great to be able to use 31-12- but that will be difficult because i saw it validates each character

[jQuery] Re: working around IE's lack of option click/dblclick events

2007-04-03 Thread Rob Desbois
Dan, Thanks for that - I'm having trouble transferring the technique behind it though. Debugging with Firebug and putting breakpoints in _Field_transferTo() and _transferOptions() then double-clicking or using the buttons to transfer never breaks... I've looked through the source for those

[jQuery] Re: Thickbox issue

2007-04-03 Thread mmjaeger
Thank you Klaus this seems to work: // setup view $('#selview a').click(function() { Ext.get('browseView').load({ url: 'view.php', scripts: true, params: 'v='+this.id, text: 'Please wait - loading view...',

[jQuery] Sort a table when a button is pressed

2007-04-03 Thread Dmitrii 'Mamut' Dimandt
Hi. A friend of mine is using the tablesorter plugin on one of the tables on the page. He needs to sort a column when a button on the page is pressed. That is, not the header of the column, but a completely separate button on the page. How can this be achieved? Thank you

[jQuery] Google Maps Plugin

2007-04-03 Thread Robert O'Rourke
Hello, This ones for Dylan Verheul, I'm using your google maps plugin to populate a map with various markers. I was just wondering about adding the GUnload() function. I've added this to the bottom of the $.fn.googlemap bit: $(body).bind(unload, function(){ GUnload(); });

[jQuery] UPDATE: code review, suggestions for condensing / reuse?

2007-04-03 Thread Andy Matthews
I've made some additions and updates to the code I posted last week: http://www.commadelimited.com/uploads/psychic/ I wondered if you all would mind looking over it to see if it can be improved. I've got the functionality the way I like it, but you all know jQuery way better than I do. So...any

[jQuery] Re: working around IE's lack of option click/dblclick events

2007-04-03 Thread Rob Desbois
Nilesh, thanks for the advice. I am no longer attempting to emulate click / dblclick events for option elements, I have attached these events to the select instead as it's obviously far better. The problem is actually that in IE, the click / dblclick event handlers are executed *before* the

[jQuery] Re: jQuery Powered Sites - Keep the Links Coming

2007-04-03 Thread Rey Bango
Added: * [http://www.ctoads.com/ Clean Thoughts On A Dirty Wall] ndash; Social network. * [http://www.geovista.psu.edu/memento/ Memento] ndash; Memento is an active online bibliography manager. * [http://www.kevad.ee/ Kevad] ndash; Estonian streestyle photoblog. * [http://www.joekaare.ee/

[jQuery] Re: Plazes on TechCrunch

2007-04-03 Thread Rey Bango
My pleasure man! Keep up the great work and if you need someone to beta test your site before relaunch, just buzz me. Rey Klaus Hartl wrote: Rey Bango schrieb: So here I am looking at an article on TechCrunch and what do I spy?!?! Klaus Hartl's baby being announced in an ad! Always good

[jQuery] Re: UPDATE: code review, suggestions for condensing / reuse?

2007-04-03 Thread Brandon Aaron
First off, this is functioning much better than before. Good work. In the click handler you bind to the h1 you have a few areas where you could optimize your code. First you declare a var named outerchild like this: var outerid = $(this).parent().attr(id); var outerchild = $('#' + outerid +

[jQuery] Re: Google Maps Plugin

2007-04-03 Thread Klaus Hartl
Robert O'Rourke schrieb: I think this one does: $(window).bind('unload', GUnload); Note that you don't need an anonymous function if you already have a reference to a function. Also the unload event handler is fired on the window and attaching it to the body like the obtrusive way in the

[jQuery] Re: jQuery selectors speed improvements - A different perspective

2007-04-03 Thread MathiasBank
Hi, I also think, that performance is very important for a good library. No one uses jquery without any plugin (even if he / she has written an own plugin which uses jquery). Of course, it is important to have small files. But I think, it is still more important, to have a performant core, which

[jQuery] Re: Dealing with incremental page rendering and ready events

2007-04-03 Thread Dan G. Switzer, II
Jörn, Its all a bit tricky: Those portlets are enclosed in about 6 layers of tables (gah) and IE doesn't even let me start the debugger, it simply fails completely to display anything at all. I really think it's the tables that are your problem. IE has some issues trying to manipulate elements

[jQuery] Re: UPDATE: code review, suggestions for condensing / reuse?

2007-04-03 Thread Andy Matthews
Awesome Brandon!! Those are PRECISELY the sorts of things I'm looking to learn. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brandon Aaron Sent: Tuesday, April 03, 2007 8:50 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re:

[jQuery] Re: jQuery selectors speed improvements - A different perspective

2007-04-03 Thread Klaus Hartl
Dan G. Switzer, II schrieb: * We need a plugin, that enables to speed up the core. It can be used in web applications, which need a lot of perfomance. It doesn't matter, if some core functions are not used any more (performance is the goal). It is important, that the jquery style still remains

[jQuery] Re: Sort a table when a button is pressed

2007-04-03 Thread Dmitrii 'Mamut' Dimandt
Jeez. That really is the most obvious solution :) Jake McGraw wrote: Not sure this is the best way, but you could simulate a click on the header when the button is clicked like this: $([EMAIL PROTECTED]).click(function(){ $(table th:eq(0)).click(); }); This will cause the first column

[jQuery] Re: working around IE's lack of option click/dblclick events

2007-04-03 Thread Dan G. Switzer, II
Rob, Thanks for that - I'm having trouble transferring the technique behind it though. Debugging with Firebug and putting breakpoints in _Field_transferTo() and _transferOptions() then double-clicking or using the buttons to transfer never breaks... I've looked through the source for those

[jQuery] Test post from outlook

2007-04-03 Thread Andy Matthews
Please ignore. Andy Matthews Senior Coldfusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.dealerskins.com http://www.dealerskins.com/ dealerskinslogo.bmp Description: Windows bitmap

[jQuery] Re: blockui timeout

2007-04-03 Thread Tom Shafer
thanks mike, im getting the hang of this. $this is your friend im learning On Apr 3, 6:32 am, Mike Alsup [EMAIL PROTECTED] wrote: Tom, Just add the timeout after you've called block(). $('a.respond').bind('click', function() { var $el = $(this); $el.prev('div').block('h1Please a

[jQuery] Re: UPDATE: code review, suggestions for condensing / reuse?

2007-04-03 Thread Alex Ezell
Andy, Nice work and some great suggestions from Brandon. I love this list! /alex On 4/3/07, Andy Matthews [EMAIL PROTECTED] wrote: Awesome Brandon!! Those are PRECISELY the sorts of things I'm looking to learn. andy -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: Masked Input Plugin Beta 1

2007-04-03 Thread Pje
One problem that i have is with dates like 01/01/2000 14:45, but the hours are optional. So, if i use a mask like 99/99/ 99:99 then every time i enter a date without hours i need to delete the end of the mask (i mean __:__). It would be great if this plugin can handle that. On 4/3/07, David

[jQuery] JS and css

2007-04-03 Thread BKDesign Solutions
Opinions? for using js, I heard that it's better to use classes on every item ; To quote from elsewhere: increased specificity makes programming in Javascript easier, e.g. the ability to grab a single element by name instead of parsing through the DOM to grab it. like to me: div

[jQuery] Re: Sort a table when a button is pressed

2007-04-03 Thread Roman Weich
Dmitrii 'Mamut' Dimandt schrieb: Hi. A friend of mine is using the tablesorter plugin on one of the tables on the page. He needs to sort a column when a button on the page is pressed. That is, not the header of the column, but a completely separate button on the page. How can this be

[jQuery] jQuery breaks with LiveGridPlus

2007-04-03 Thread [EMAIL PROTECTED]
Hey everybody, I've been searching for an animation library to use along side the LiveGridPlus implementation from http://dowdybrown.com/ (based on the Rico LiveGrid). Anyway, I can get jQuery set up to do what I want it to by including it first, and then the prototype library that LGP needs

[jQuery] Am I missing something?

2007-04-03 Thread AllexS
!-- Before bargraph plugin is applied -- div class=graph 22 /div div class=graph 89 /div !-- Fairly basic function -- jQuery.fn.bargraph = function() { return this.each(function(){ var temp = $(this).text(); var span = 'span' + temp + '%' + '/span';

[jQuery] Re: css image caching with jquery

2007-04-03 Thread Robert O'Rourke
Theo Welch wrote: snip To help deal with this, there are ways to configure a web server so that it will instruct the browser to not make these unnecessary requests, but most web servers aren't configured to such a degree. For example, you can configure Apache to tell the browser not to

[jQuery] Re: JS and css

2007-04-03 Thread Robert O'Rourke
BKDesign Solutions wrote: Opinions? for using js, I heard that it's better to use classes on every item ; To quote from elsewhere: increased specificity makes programming in Javascript easier, e.g. the ability to grab a single element by name instead of parsing through the DOM to grab it.

[jQuery] Re: Web 2.0 is vulnerable to attack

2007-04-03 Thread Benjamin Sterling
How about posting some example code that shows an example of how secret one time tokens can be created and used within jQuery. I second that. It would go a long way in educating me on the proper way of doing things. -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com

[jQuery] Re: jQuery selectors speed improvements - A different perspective

2007-04-03 Thread MathiasBank
Well, I have written a treemap implementation in PHP and JavaScript (like the one of SequoiaView - http://www.win.tue.nl/sequoiaview/). And in this application, there is a difference. Of course, in most applications, there will be no difference. But there are cases, in which you need a fast

[jQuery] Re: Web 2.0 is vulnerable to attack

2007-04-03 Thread Brian Miller
Keep in mind that this is more of a server-side thing. The only JS piece involves adding a variable value to your URL when pulling the data through a script tag or an iframe. e.g.: http://mysite/myapplication?uniquevalue=foo Then, your server application should return an error (perhaps 500?)

[jQuery] Re: Am I missing something?

2007-04-03 Thread Marshall Salinger
Untested, but I am fairly certain that you need to either use a block level element such as a paragraph tag or try setting strong to display:block. -Marshall AllexS wrote: !-- Before bargraph plugin is applied -- div class=graph 22 /div div class=graph 89 /div !-- Fairly basic

[jQuery] Re: Am I missing something?

2007-04-03 Thread Smith, Allex
Marshall, Thanks for your reply. My css is set up like this: .graph .bar { display: block; position: relative; background: #B1D632; text-align: center; color: #333; height: 2em; line-height: 2em; } The original sample I got this

[jQuery] Re: Badly need help with ajaxForm/validator

2007-04-03 Thread Kim Johnson
I wrote to Dan privately thanking him for this info, but want to point it out to the list too -- this is a GREAT presentation for those who are interested in cementing jquery knowledge, and the examples are top notch. Thanks again Dan! --- Dan G. Switzer, II [EMAIL PROTECTED] wrote: Kim,

[jQuery] Re: Am I missing something?

2007-04-03 Thread Marshall Salinger
Hi Allex, It looks like it was a white-space issue with the numbers in the divs. I have a test case working here: http://salingermultimedia.com/jQuery/graph/ -Marshall Smith, Allex wrote: Marshall, Thanks for your reply. My css is set up like this: .graph .bar { display: block;

[jQuery] Re: Am I missing something?

2007-04-03 Thread Smith, Allex
This works best :) Thanks again. // No more whitespace problem :) var temp = jQuery.trim(jQuery(this).text()); -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Smith, Allex Sent: Tuesday, April 03, 2007 3:03 PM To: jquery-en@googlegroups.com

[jQuery] Re: working around IE's lack of option click/dblclick events

2007-04-03 Thread Dan G. Switzer, II
Rob, Still no luck with that code. The only way I can make it work is by putting an alert('...') in the change/click handler - the delay is obviously enough that IE has updated the DOM by the time the box is closed. Without the alert, I just get the selections before the change. Here's a

[jQuery] Re: Web 2.0 is vulnerable to attack

2007-04-03 Thread Nathan Young -X \(natyoung - Artizen at Cisco\)
Hi. I know you asked for code but what you're getting is more talk. Sorry. You can't produce the secret in pure client side JS, you need the server to round trip the secret to itself with the cooperation of the JS. Also note that as stated before, creating mashups and securing your service in

[jQuery] Re: Test for a function being defined

2007-04-03 Thread Nathan Young -X \(natyoung - Artizen at Cisco\)
if (typeof(modify)==function){} .:||:._.:||:._.:||:._.:||:._.:||:._.:||:._.:||:._.:||:._.:||:._.:||:._.: ||:. Nathan Young Cisco.com-Interface Development A: ncy1717 E: [EMAIL PROTECTED] -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[jQuery] Re: Web 2.0 is vulnerable to attack

2007-04-03 Thread Benjamin Sterling
Nathan, All good information, much appreciated. -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com

[jQuery] Starting with jQuery HELP

2007-04-03 Thread richman
Hi I am trying to make a simple rollover system where the user rolls over an image and a corrosponding div shows after the exsiting div disappears in a container div. Basically the problem is I cannot seem to find code how this can be done. I can show the required div but it keeps sliding down

[jQuery] Re: Does this code look correct?

2007-04-03 Thread Mike Alsup
Using the [] operator returns the raw DOM element. Using eq() function returns a jQuery wrapped object. He wants the DOM element because he's setting the 'disabled' prop.

[jQuery] is there something like Prototype Window for jquery???

2007-04-03 Thread Pedro Luz
Hi, Is there any plugin for jquery that resembles Prototype Window (http:// prototype-window.xilinus.com/) thanks

[jQuery] Re: Something that bugs me about the google groups messages...

2007-04-03 Thread Shelane
Hmmm. That method has always worked fine in Entourage on the Mac (it keeps the original message together with the replies when sorted by subject). On Apr 3, 6:35 pm, Alex Ezell [EMAIL PROTECTED] wrote: Scratch that. I see what you are saying. Sorry. It does throw an Re: before the list tag

[jQuery] Re: Does this code look correct?

2007-04-03 Thread Karl Rudd
Woops, you're right of course. I saw the $ at the front of the Calculate and assumed it should be a jQuery object. Killed by convention :). Is the disabled = false not working? I've had similar problems and have used removeAttr('disabled'). So in this case it would look like:

[jQuery] Re: is there something like Prototype Window for jquery???

2007-04-03 Thread Rey Bango
Take a look at jqModal: http://dev.iceburg.net/jquery/jqModal/ Rey Pedro Luz wrote: Hi, Is there any plugin for jquery that resembles Prototype Window (http:// prototype-window.xilinus.com/) thanks -- BrightLight Development, LLC. 954-775- (o) 954-600-2726 (c) [EMAIL

[jQuery] Re: Ajax Experience SF

2007-04-03 Thread Shelane
I didn't find anything on the conference itself other than the date and where. Is there a place to get more info? On Apr 3, 10:05 am, John Resig [EMAIL PROTECTED] wrote: I'll probably be presenting. Probably on jQuery, maybe something else too. --John On 4/3/07, Glen Lipka [EMAIL