[jQuery] Re: New Plugin: Live Query (previously called Behavior)

2007-08-20 Thread Marshall Salinger
This looks very cool indeed. No more creating functions for binding events after ajax loads. I can't wait to use this. Great work Brandon! -Marshall Brandon Aaron wrote: Some of you may be familiar with Behavior. It was a first attempt at implementing a live DOM experience. Behavior has

[jQuery] Re: New Plugin: Live Query (previously called Behavior)

2007-08-20 Thread SeViR
;-( wops, three months ago, I needed something like that, I have to programm various lines of code plus for attaching events for the dinamic elements created. You have made me very happy :-). I love this plugin, thanks thanks thanks :-D Brandon Aaron escribió: Some of you may be familiar

[jQuery] Re: Feature suggestion: animating through stylesheets

2007-08-20 Thread Aaron Heimlich
Is it me, or is the DOM method a little bit faster than the CSS one (FF 2.0.0.6 Mac OS 10.4.10 Intel)? I would think that they'd both be the same speed. Having said that, seeing the DOM move all the blocks in unison like that is f'ing awesome! --Aaron On 8/20/07, John Resig [EMAIL PROTECTED]

[jQuery] Re: Feature suggestion: animating through stylesheets

2007-08-20 Thread John Resig
It's very deceptive because there's two completely different style of animations occurring here. The DOM one is doing: Finish the animation in X amount of time, dropping as many frames as you need in order to make it happen. the CSS one is doing: Do Y number of frames, finish whenever you can. -

[jQuery] Re: Tablesorter 2.0

2007-08-20 Thread lukek
Thanks for getting back Christian - only just seen you post. I look forward to the fix. I will tinker with it and see what I come up with until then. By the way I had another question. -- In the unpacked version of the latest script your comment on line 555 says apply easy methods that trigger

[jQuery] Re: ASP.NET IDs

2007-08-20 Thread Sam Collett
On Aug 19, 6:31 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Thank you all very much for the replies. They came in very useful! One quick question for Sam, though. You said you don't use gridviews, etc... what do you do then? Manually write the tables? I use a repeater and create a

[jQuery] Re: Strange bug with slide function and input elements

2007-08-20 Thread Jeroen Coumans
Hi, I still don't understand why I see this effect in the list with input elements and not in the list without input elements, but your solution works perfect, thanks! Jeroen On Aug 19, 6:32 pm, Bernd Matzner [EMAIL PROTECTED] wrote: Hi Jeroen, the slideUp and slideDown animations are

[jQuery] Re: Totally new to this...

2007-08-20 Thread Shaft
Hey check it again: http://www.qbox.gr/test_asxeto/jq_test/dragJq2.html I enclosed all the animated info div's with a position: absolute, into another infoContainer div that has a position: fixed attribute... It works even in Safari now :jumping: -- View this message in context:

[jQuery] Problems with IE after a jquery load

2007-08-20 Thread danzinger
Hello I have some problems with the behaviour of IE 6, the code i wrote works ok in Firefox. I have an initial php that calls a load of another php file into a div when dom is loaded. All Ok. Inside this second php file, which is loaded in the div, i have more script tags that call jquery

[jQuery] Re: Tablesorter 2.0

2007-08-20 Thread lukek
Been having a further poke around. I have done what Christian suggested and merged the widgets and parser arrays of this.config with those in settings. However now I have realised the constructor is being called twice - or the number of levels of inheritance. So many options not sure what to

[jQuery] Re: New Plugin: Live Query (previously called Behavior)

2007-08-20 Thread Brandon Aaron
Yeah I meant formerly. :) Thanks Dylan! -- Brandon Aaron On 8/20/07, Dylan Verheul [EMAIL PROTECTED] wrote: Brandon, this looks very exciting. It may even solve some issues I'm running into in my current project. Question: Live Query (formally Behavior) -- don't you mean formerly, or is

[jQuery] Re: $.load() POSTing instead of GETing

2007-08-20 Thread elygre
One consideration for using POST is that character set handling for URLs is not always well defined, whereas the character set handling for the post data is. For example, if I want to send stuff like Æ, Ø or Å (norwegianl characters) on a URL, some servers expect ISO 8859, whereas others expect

[jQuery] Re: Problems with IE after a jquery load

2007-08-20 Thread Stephan Beal
On Aug 20, 11:27 am, danzinger [EMAIL PROTECTED] wrote: So, the fadeIn works in Firefox and IE, but the fadeOut called from the loaded php file doesnt work in IE Someone could help me with this? Can you post a link to an example? Based solely on the description it will be difficult guess at

[jQuery] Re: Feature suggestion: animating through stylesheets

2007-08-20 Thread Stephan Beal
On Aug 20, 7:18 am, John Resig [EMAIL PROTECTED] wrote: I've re-done the original demo using jQuery's step function (dunno why I didn't think of this before). Much improved:http://dev.jquery.com/~john/ticket/animatetest/ error: console is not defined ?? console.log() is called a couple of

[jQuery] Re: New Plugin: Live Query (previously called Behavior)

2007-08-20 Thread Stosh
John, Any chance that this might be integrated into the core in a future version, or something like it perhaps? Pax, - Stan On Aug 20, 1:23 am, John Resig [EMAIL PROTECTED] wrote: This is absolutely clutch. I've been watching this plugin progress nicely and I'm very pleased with how it's

[jQuery] .change() and IE bug

2007-08-20 Thread Eridius
does .change not work it IE becauseI have this 310 destination.load('/lib/ajax/price_buster.php', {'get': 'destination'}); 311 destination.change(function() 312 { 313 reset_data(0); 314 var destination_var = $('[EMAIL PROTECTED]'); 315 316 nights.load('/lib/ajax/price_buster.php', {'get':

[jQuery] Re: .change() and IE bug

2007-08-20 Thread duma
What sort of element is destination? Please paste its declaration. Sean Eridius wrote: does .change not work it IE becauseI have this 310 destination.load('/lib/ajax/price_buster.php', {'get': 'destination'}); 311 destination.change(function() 312 { 313 reset_data(0); 314 var

[jQuery] Re: .change() and IE bug

2007-08-20 Thread Eridius
I have now just tried destination.load('/lib/ajax/price_buster.php', {'get': 'destination'}); destination.bind('change', function() { reset_data(0); var destination_var = $('[EMAIL PROTECTED]'); nights.load('/lib/ajax/price_buster.php', {'get':

[jQuery] Re: .change() and IE bug

2007-08-20 Thread Eridius
var destination = $('#destination'); it is a select box. duma wrote: What sort of element is destination? Please paste its declaration. Sean Eridius wrote: does .change not work it IE becauseI have this 310 destination.load('/lib/ajax/price_buster.php', {'get':

[jQuery] Re: Plugin for uploading multiple files/directories?

2007-08-20 Thread tlphipps
Uploading multiple files and 'selecting' multiple files are two very different things. Based on your wording, I'm guessing that you want to allow users to 'select' multiple files at the same time for upload. In short, this can't be done via standard browser interfaces (javascript), you'll need

[jQuery] [NEWS] Paul Bakaus on Ajaxian

2007-08-20 Thread Rey Bango
jQuery team member and jQuery UI team lead Paul Bakaus got some great press from Ajaxian for his blog posting Advanced ternary conditions in JavaScript. Check it out: http://ajaxian.com/archives/fun-with-ternary-operators Direct link to Paul's posting:

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

2007-08-20 Thread Brandon Aaron
Congrats Paul! :) -- Brandon Aaron On 8/20/07, Rey Bango [EMAIL PROTECTED] wrote: jQuery team member and jQuery UI team lead Paul Bakaus got some great press from Ajaxian for his blog posting Advanced ternary conditions in JavaScript. Check it out:

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

2007-08-20 Thread Karl Swedberg
Excellent! Way to go, Paul! Also, check out Paul's very cool demo, Comic Strip Navigation: http://www.paulbakaus.com/lab/navigation/comicstrip/ --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Aug 20, 2007, at 9:29 AM, Rey Bango wrote: jQuery team

[jQuery] jQuery Ajax Bugs?

2007-08-20 Thread F8R
I have use jQuery to send AJAX call to PHP script using POST. It's always execute error function callback. I check using FireBug Firefox extention, the passed XMLHTTPRequest to error function callback has some of this value : readyState : 4 status : 200 responseText : {The expected response}

[jQuery] jqDnR and resizement proposal

2007-08-20 Thread [EMAIL PROTECTED]
Hi All, Does anyone know how to implement resizement following a certain amout of pixels with jqDnR ? For example I would like the plugin to allow resizement East, South or both by steps of 10px at a time. In other words, I would like to have something like the grid option for idrag.js but with

[jQuery] [CFJS Plugin] Replace() problem

2007-08-20 Thread Corrado Fiore
Dear All, I'm using the excellent CFJS plugin from Chris Jordan (see http:// tinyurl.com/yr66lp) to ease some string functions in my web pages. I'm running into a problem when using Replace() or ReplaceNoCase(): the original substring won't get deleted from the final output. Here you are some

[jQuery] interface draggable and resizeable

2007-08-20 Thread marcin.
Hi! I have a problem with jQuery interface library. I've got a 'script' which looks like that: http://tauri.ndl.pl/szaq/jquery/combined_2.htm I wanted to combine interfaces: Draggable and Resizeable. Everything is OK, but there is one problem - if #thumbnail is resized (to more than 130x130

[jQuery] simple menu - hover issue

2007-08-20 Thread teknoledge
Hello to all! I'm new with jQuery and was wondering if someone can help me out with my problem I'm having for simple menu. Here is the HTML code: div id=headermenu a href=http://flairpair.com/blog; title=FlairPair Blog Homeimg

[jQuery] Square brackets in name-attribute

2007-08-20 Thread [EMAIL PROTECTED]
Hello, a problem I couldn't find a solution for is the following: I have an input element with the attribute: input name=[DUS][1] / Getting this element is easy using: $('[EMAIL PROTECTED]') But what to do when I try to search for the following: $('[EMAIL PROTECTED]') This ofcourse won't work

[jQuery] How can I add new plugins to JQuery plugin list?

2007-08-20 Thread [EMAIL PROTECTED]
Greetings, Last time I working under creation of new plugins for JQuery. What I need to publish my plugins description in JQuery site? Where have I to place my plugins in external web-servers or it's possible to put my files into JQuery web-site? There exists any validation phase for new

[jQuery] Disabling ctrl+v(paste) in forms with jquery

2007-08-20 Thread Web Specialist
I'm looking a script to disable users to paste content in forms using ctrl+v. How to avoid that? Cheers

[jQuery] Re: jQuery 1.1.3.1 Safari Crashes

2007-08-20 Thread ru
Anyone know when 1.1.1.4 is going to be released? On Aug 14, 4:12 pm, Ken [EMAIL PROTECTED] wrote: I know you, and the other developers, are probably very busy with life and everything, but I was curious if there was any word on the new version of jQuery. I am highly interested in fixes for

[jQuery] Re: Disabling ctrl+v(paste) in forms with jquery

2007-08-20 Thread Stephan Beal
On Aug 20, 4:47 pm, Web Specialist [EMAIL PROTECTED] wrote: I'm looking a script to disable users to paste content in forms using ctrl+v. How to avoid that? Since that facility is provided independent of JS by the underlying native widgets (often at a deeper level than the browser application

[jQuery] Re: Square brackets in name-attribute

2007-08-20 Thread Stephan Beal
On Aug 20, 4:37 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: a problem I couldn't find a solution for is the following: I have an input element with the attribute: input name=[DUS][1] /

[jQuery] Re: Square brackets in name-attribute

2007-08-20 Thread Dan G. Switzer, II
Marc, a problem I couldn't find a solution for is the following: I have an input element with the attribute: input name=[DUS][1] / Getting this element is easy using: $('[EMAIL PROTECTED]') But what to do when I try to search for the following: $('[EMAIL PROTECTED]') You should be able to

[jQuery] Re: Help with show/hide script

2007-08-20 Thread Priest, James (NIH/NIEHS) [C]
Wizzud - Just wanted to let you know I finally got around to implementing this - it works great!! After picking it apart - I learned a lot - thanks for the example! Jim -Original Message- From: Wizzud [mailto:[EMAIL PROTECTED] Sent: Thursday, August 16, 2007 5:17 AM To:

[jQuery] Re: Feature suggestion: animating through stylesheets

2007-08-20 Thread Glen Lipka
I got that error in IE7, but not in FF. RE: Perceived speed. The way john fixed it is accurate in terms of speed/time, which means the other one is not accurate. Most animations are only 1 or a couple of elements, so this distortion shouldn't be noticeable. Nothing to do, just interesting to

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

2007-08-20 Thread Paul Bakaus
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! Also, check out Paul's very cool demo, Comic Strip Navigation:http://www.paulbakaus.com/lab/navigation/comicstrip/ --Karl _

[jQuery] Re: Disabling ctrl+v(paste) in forms with jquery

2007-08-20 Thread Stephan Beal
On Aug 20, 4:58 pm, Stephan Beal [EMAIL PROTECTED] wrote: On Aug 20, 4:47 pm, Web Specialist [EMAIL PROTECTED] wrote: I'm looking a script to disable users to paste content in forms using ctrl+v. How to avoid that? And don't forget that you'd also have to disable Shift-Insert AND the

[jQuery] Re: How can I add new plugins to JQuery plugin list?

2007-08-20 Thread Stephan Beal
On Aug 20, 4:30 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Last time I working under creation of new plugins for JQuery. What I need to publish my plugins description in JQuery site? Where have I to place my plugins in external web-servers or it's possible to put my files into JQuery

[jQuery] Problem with SVG/XML and Jquery ???

2007-08-20 Thread Philippe Bouige
Hello, I tried desperately to make the jquery with the SVG code but does that seem not to function... is it that someone to an idea? or of the examples that function ? thank you for your help (I use Firefox and adobe plugin svg)

[jQuery] Re: jQuery 1.1.3.1 Safari Crashes

2007-08-20 Thread John Resig
1.1.4 will probably be released tonight, if I can resolve some of these final, sticky, bugs. --John On 8/20/07, ru [EMAIL PROTECTED] wrote: Anyone know when 1.1.1.4 is going to be released? On Aug 14, 4:12 pm, Ken [EMAIL PROTECTED] wrote: I know you, and the other developers, are probably

[jQuery] Re: hide table rows when we type in text box

2007-08-20 Thread Potluri
I really appreciate your help. Thanks a lot. It seems that you are pro in javascript. But my scenario in selecting col values from table is quite different from yours, I think you can help me right away. for( var i = 0, n = trows.length; i n; ++i ) { var row = trows[i]; var col =

[jQuery] [Plugin] Password Strength Meter

2007-08-20 Thread Tane Piper
Hi Folks, Please find another one of my plugins here: http://jquery.com/plugins/project/pstrength This is a simple plugin that allows you to attach a client side password strength meter to any form element. You can check out a demo and documentation here:

[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] Keeping a mouseover-triggered animation from running

2007-08-20 Thread Gordon
I am working on a project that includes a group of items arranged in a grid. the powers that be would like for a mouseover event to make the hovered item expand so that more information could be shown and shrink again when the item is unhovered. My first attempt simply did an animate () on the

[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] Re: Keeping a mouseover-triggered animation from running

2007-08-20 Thread Stephan Beal
On Aug 20, 6:25 pm, Gordon [EMAIL PROTECTED] wrote: My first attempt simply did an animate () on the hovered item and another one when it was unhovered. this produced the desired scaling effect, but it also ran into a few problems when the mouse was moved over several items in quick

[jQuery] Re: [Plugin] Password Strength Meter

2007-08-20 Thread Web Specialist
Very very good. Awesome! 2007/8/20, Tane Piper [EMAIL PROTECTED]: Hi Folks, Please find another one of my plugins here: http://jquery.com/plugins/project/pstrength This is a simple plugin that allows you to attach a client side password strength meter to any form element. You can check

[jQuery] Re: Fwd: jQuery and UTF8

2007-08-20 Thread Bil Corry
barophobia wrote on 8/15/2007 11:15 PM: Content-Typetext/html Does that give you a clue? Your server should be sending this as the content-type if serving UTF-8: text/html; charset=UTF-8 Otherwise, you're leaving it up to the browser to decipher the charset. - Bil

[jQuery] Re: Feature suggestion: animating through stylesheets

2007-08-20 Thread weepy
i can't find any documentation on the 'step' function ? Stephan Beal wrote: On Aug 20, 7:18 am, John Resig [EMAIL PROTECTED] wrote: I've re-done the original demo using jQuery's step function (dunno why I didn't think of this before). Much

[jQuery] Re: Feature suggestion: animating through stylesheets

2007-08-20 Thread John Resig
Oops, haha, that's what I get for leaving in my debugging code. Try again. --John On 8/20/07, Stephan Beal [EMAIL PROTECTED] wrote: On Aug 20, 7:18 am, John Resig [EMAIL PROTECTED] wrote: I've re-done the original demo using jQuery's step function (dunno why I didn't think of this

[jQuery] Re: Paul Bakaus on Ajaxian

2007-08-20 Thread Pops
Interesting article. I do have a few comments. Hope its not taken as criticism. I always had been taken a back by the erroneoous usage of the term ternary condition for the ? operator. The ? is called the Conditional Operator and it provides binary logic. By definition, Ternary is three, not

[jQuery] Re: jQuery 1.1.3.1 Safari Crashes

2007-08-20 Thread Ken
That is awesome! Thank you very much, and I will keep my fingers crossed for you. :) On Aug 20, 11:18 am, John Resig [EMAIL PROTECTED] wrote: 1.1.4 will probably be released tonight, if I can resolve some of these final, sticky, bugs. --John On 8/20/07, ru [EMAIL PROTECTED] wrote:

[jQuery] Re: Fwd: jQuery and UTF8

2007-08-20 Thread barophobia
On 8/20/07, Bil Corry [EMAIL PROTECTED] wrote: Your server should be sending this as the content-type if serving UTF-8: text/html; charset=UTF-8 Otherwise, you're leaving it up to the browser to decipher the charset. Thanks for the info but I have some questions still. 1. Why do you

[jQuery] Get the element that's appended directly without using second step?

2007-08-20 Thread Jay W
With the help from a few jQuery'ers, the only way to dynamically create and append element using jQuery for multiframe application is $(window.document.body).append(div class='testDiv'/div); This jQuery statement returns window.document.body object. There will be quite a few elements created

[jQuery] Re: Optimization Help

2007-08-20 Thread TigeRyan
Fantastic solution, really cut the code down! Thank you very much! On Aug 18, 8:59 am, Pops [EMAIL PROTECTED] wrote: How about just: $('[EMAIL PROTECTED]').click(function() { if (this.id == categoryid0) { $('[EMAIL PROTECTED]').attr(checked,); this.checked = true; }

[jQuery] Re: Get the element that's appended directly without using second step?

2007-08-20 Thread Estevão Lucas
the way that i use is: $( body ).append(div class='testDiv'/div).find( .testDiv ); Thus the created element will be returned 2007/8/20, Jay W [EMAIL PROTECTED]: With the help from a few jQuery'ers, the only way to dynamically create and append element using jQuery for multiframe application

[jQuery] Re: Get the element that's appended directly without using second step?

2007-08-20 Thread Karl Swedberg
You could do it like this, perhaps: var $testDiv = $(div class='testDiv'/div).appendTo (window.document.body); Is that what you're looking for? --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Aug 20, 2007, at 11:47 AM, Jay W wrote: With the help

[jQuery] Re: Fwd: jQuery and UTF8

2007-08-20 Thread Bil Corry
barophobia wrote on 8/20/2007 11:58 AM: 1. Why do you think the standard pages work fine? Do you have a meta tag defining the charset? Most likely that wouldn't be present in an AJAX call but would tell the browser the correct charset. 2. What about the issue I'm having sending the

[jQuery] Re: Paul Bakaus on Ajaxian

2007-08-20 Thread Pops
I am curious to refreshing my mind if the JS intepreter short circuits bit masking. In other words: fn(a) fn(b) I have to check that out. I guess it depends on the compiler or intepreter. I didn't roll up my sleeves and test this with JS, but I did some googling to see.

[jQuery] Re: .change() and IE bug

2007-08-20 Thread Eridius
it looks like that IE does not support onchange on div, is ther a simple way around this because if not i am going to have to spend a few hours rewriting this(there are about 7 dropdowns in div the pull data base on the options abopve) duma wrote: What sort of element is destination?

[jQuery] Get the element that's appended directly without using second step?

2007-08-20 Thread Matt Penner
This is exactly how I do it. I don't even append the new element until it has been fully populated or manipulated. I don't want my users to see a half way completed div if some procedure takes longer than expected. *Matt Penner** *Database Engineer II GIS Support [EMAIL PROTECTED] (951) 940-6108

[jQuery] Re: $.load() POSTing instead of GETing

2007-08-20 Thread Pops
On Aug 20, 7:17 am, elygre [EMAIL PROTECTED] wrote: One consideration for using POST is that character set handling for URLs is not always well defined, whereas the character set handling for the post data is. For example, if I want to send stuff like Æ, Ø or Å (norwegianl characters) on a

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

2007-08-20 Thread Jörn Zaefferer
Rey Bango schrieb: jQuery team member and jQuery UI team lead Paul Bakaus got some great press from Ajaxian for his blog posting Advanced ternary conditions in JavaScript. Check it out: http://ajaxian.com/archives/fun-with-ternary-operators Direct link to Paul's posting:

[jQuery] Re: Fwd: jQuery and UTF8

2007-08-20 Thread barophobia
On 8/20/07, Bil Corry [EMAIL PROTECTED] wrote: barophobia wrote on 8/20/2007 11:58 AM: 1. Why do you think the standard pages work fine? Do you have a meta tag defining the charset? Most likely that wouldn't be present in an AJAX call but would tell the browser the correct charset.

[jQuery] Re: Get the element that's appended directly without using second step?

2007-08-20 Thread Klaus Hartl
Estevão Lucas wrote: the way that i use is: $( body ).append(div class='testDiv'/div).find( .testDiv ); Thus the created element will be returned I usually code that like the following to save one expensive search operation and code duplication like the class name: var div = $('div

[jQuery] Re: Feature suggestion: animating through stylesheets

2007-08-20 Thread polyrhythmic
When I tried to do this same test with easing, I got an infinite loop error. Does that happen with your new method? I received infinite loop errors last time I tried to use easing (1.1.1) with jQuery 1.1.3 and couldn't pinpoint the problem (I'm not good with the jQuery animation source code).

[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: What to do when a plugin's css gets in your way

2007-08-20 Thread Pops
On Aug 19, 11:52 pm, Mitch [EMAIL PROTECTED] wrote: I will look into ClueTip. I like the way this coder set things up but he did not do a good job laying out how to use it, and compared to other plugin specialists here, he did not set up the plugin for automatic use, I had to play with

[jQuery] Re: New jQuery Cheat Sheet

2007-08-20 Thread Pops
Why not just put this XLS into Google Docs? That way you don't scare people with XLS downloads. :-) g On Aug 20, 2:13 pm, Matt Kruse [EMAIL PROTECTED] wrote: There are a few jquery cheat sheets out there already, but I wanted to create my own tailored to what I need and how I wanted it to

[jQuery] Problems with VALIDATE PLUGIN

2007-08-20 Thread Jean
I had a problem with a validation plugin in a form with some ul li fomatation couze i´m using display: table and cia to emulate a table formation Can anyone help me? div class=table ul class=tr li class=td label for=razao Razatilde;o Social: /label /li li class=td input

[jQuery] Re: Get the element that's appended directly without using second step?

2007-08-20 Thread Karl Swedberg
On Aug 20, 2007, at 2:11 PM, Klaus Hartl wrote: Estevão Lucas wrote: the way that i use is: $( body ).append(div class='testDiv'/div).find( .testDiv ); Thus the created element will be returned I usually code that like the following to save one expensive search operation and code

[jQuery] Re: Get the element that's appended directly without using second step?

2007-08-20 Thread Jay W
This method works fine for a single frame document. If you dynamically create a DOM element on the top frame and trying to move this element in IE, an error will be thrown. See this thread:

[jQuery] Re: Problems with VALIDATE PLUGIN

2007-08-20 Thread Jörn Zaefferer
Jean schrieb: I had a problem with a validation plugin in a form with some ul li fomatation couze i´m using display: table and cia to emulate a table formation Can anyone help me? Could you explain what exactly your problem is? If you are using a table layout, why don't you use a table?

[jQuery] Loading a DOM Element with Rails Template Syntax?

2007-08-20 Thread goodieboy
Hi, I've got a template that is loaded into the page, and immediately hidden by jQuery. I want to duplicate it and append it into another place on the page. The situation is that there are spots in the HTML fragment that have the Rails template syntax: % something.each do | item| %. What I'd

[jQuery] Re: Fwd: jQuery and UTF8

2007-08-20 Thread David Garcia Ortega
Hi barophobia, I had the same problems as you. I am using special spanish characters as '�', '�' and so on. What I did to solve the problems was: 1. In MySQL database, establish the collation as 'utf8_spanish2_ci'. To japanese characters you can use 'utf8_unicode_ci'. 2. When you load an html

[jQuery] Re: New jQuery Cheat Sheet

2007-08-20 Thread George Blouin
Thanks Matt! I threw this into my Google Docs and published it if anyone wants it just in that form instead. http://spreadsheets.google.com/pub?key=pmkgiRQf98ll4L1SSh9E0Dw George Blouin On Aug 20, 12:33 pm, Pops [EMAIL PROTECTED] wrote: Why not just put this XLS into Google Docs? That way

[jQuery] Seach and replace Rails template tags

2007-08-20 Thread goodieboy
Hi, I'm trying to search through a node and find all of the Rails template tags: % and %. I'd like to simply remove them, but can't figure out how. How is this done? :) Thanks! -- View this message in context:

[jQuery] Re: hide table rows when we type in text box

2007-08-20 Thread Sean O
I know you said you didn't want to use any plugins, but Rik Lomas' great quicksearch plugin http://rikrikrik.com/jquery/quicksearch/ does just what you want right out of the box. He even has a demo on his site for large tables: http://rikrikrik.com/quicksearch/large_table.html If you don't

[jQuery] Re: Seach and replace Rails template tags

2007-08-20 Thread Estevão Lucas
Hi, Rails generate the code HTML that jQuery will access it. You cannot access a Rails code because Rails run on server and JavaScript run on client-side 2007/8/20, goodieboy [EMAIL PROTECTED]: Hi, I'm trying to search through a node and find all of the Rails template tags: % and %. I'd

[jQuery] Re: Problems with VALIDATE PLUGIN

2007-08-20 Thread Jean
Couse i´m not using a table layout =P but i´m using div.table ul.tr li.td .table { display: table; } .tr{ display: table-row; } .td { display: table-cell; } The error is in 795 line jQuery(element).data is not a function [Break on this error] : jQuery(element).data(); a bit of code div

[jQuery] Re: Feature suggestion: animating through stylesheets

2007-08-20 Thread Sean Catchpole
John, that's a very cute trick that I had not thought of. Can that internalized inside the animate so all animations gain that benefit? ~Sean On 8/20/07, John Resig [EMAIL PROTECTED] wrote: I've re-done the original demo using jQuery's step function (dunno why I didn't think of this before).

[jQuery] Re: Problems with IE after a jquery load

2007-08-20 Thread danzinger
Hello I havent published it yet, (now im lack of my internet services thanks to my isp great job :P), but i can show you the code that causes the problems In my main page, index.php i include jquery and jquery form plugin and i have this script script language=javascript

[jQuery] Re: Problems with VALIDATE PLUGIN

2007-08-20 Thread Jörn Zaefferer
Jean schrieb: The error is in 795 line jQuery(element).data is not a function [Break on this error] : jQuery(element).data(); Please check Dependencies section of the plugin page. The - not so helpful - error indicates that the metadata plugin is missing. Gonna rename that method...

[jQuery] Re: TableSorter Set Column Sorter to false

2007-08-20 Thread Christian Bach
Dan, You need to include the jquery metadata plugin: script type=text/javascript src=../jquery.metadata.js/script See: http://tablesorter.com/docs/#Download /christian 2007/8/20, Dan Vega [EMAIL PROTECTED]: The examples do not say anything about a metadata widget, should my code look

[jQuery] add class to row object of table

2007-08-20 Thread Potluri
Hi, My table format is this table id=srTable tbody trtdsome data/td/tr trtdsome data/td/tr trtdsome data/td/tr trtdsome data/td/tr /tbody /table I have a small issue which might be easy for jquery pros. Initially I'm saving up all the table rows as suggested by George(Thanks to him)

[jQuery] Re: Tablesorter 2.0

2007-08-20 Thread Christian Bach
Hi Lukek, I took an other approach to this. Check out: http://tablesorter.com/docs/example-extending-defaults.html Regards Christian 2007/8/20, lukek [EMAIL PROTECTED]: Been having a further poke around. I have done what Christian suggested and merged the widgets and parser arrays of

[jQuery] Re: TableSorter 2.0 documentation notes

2007-08-20 Thread Christian Bach
Thanks Chris, The docs are know updated. /christian 2007/8/19, Chris [EMAIL PROTECTED]: Two easy to fix errors: The example code in Getting Started uses tableSorter() several times rather than tablesorter(). Threw me off till I compared my code with other examples.

[jQuery] Re: Seach and replace Rails template tags

2007-08-20 Thread goodieboy
Obviously I didn't explain myself well enough! :) I have a repeating/looped template, that is parsed (partial) by Rails, but I also want to load that template (html with rail template tags) into jQuery, so I can dynamically attach that same template using the client. It's hard to explain exactly

[jQuery] Re: Get the element that's appended directly without using second step?

2007-08-20 Thread Pops
Jay, Before finding jQuery, I had a need with my frame based applet where one frame updated another. I could not do so with IE Worked find under FF. To resolve it, I went a frame reload approach. Inspired by your message, I played with jQuery now to do this. I was able to do it very easy

[jQuery] Re: hide table rows when we type in text box

2007-08-20 Thread Michael Geary
My row column contains lot of details apart from name like images span id's apart from just text as in your scenario. in precise it contains lot of details apart from simple text but I need to pick up only that text from column by which rows are to be hidden. This is example to give you

[jQuery] Re: Paul Bakaus on Ajaxian

2007-08-20 Thread Pops
I have to check that out. I guess it depends on the compiler or intepreter. It's pretty rare for anything like this to depend on the compiler or interpeter. We are still talking about short circuits? For bitwise conditions. It can be larged based on only compiler/ interpreter but machine

[jQuery] $(document).ready doesn't pass document

2007-08-20 Thread Cybolic
I'm trying to get a site using iframes working, and for that I do the following: $(frameDocument).ready(frameInit); where frameInit is a function that sets up the logic for the page in the frame. I'd like to be able to just use normal queries like $('a') in frameInit instead of queries like

[jQuery] $(document).ready window.history.back() bug?

2007-08-20 Thread pd
Hi All Not sure if this should go straight to the dev list so trying here first. I've just spent two hours debugging a strange issue where the following triggers the back function and ignores the contents of the if condition: $(document).ready( function () { if (window.history.back()) {

[jQuery] Re: $(document).ready window.history.back() bug?

2007-08-20 Thread pd
Hi yeah sorry I only realised the logic you point out immediately after posting. pd On Aug 21, 12:08 pm, Stephan Beal [EMAIL PROTECTED] wrote: On Aug 21, 3:58 am, pd [EMAIL PROTECTED] wrote: Not sure if this should go straight to the dev list so trying here first. I've just spent two

[jQuery] Re: New Plugin: Live Query (previously called Behavior)

2007-08-20 Thread Ganeshji Marwaha
wonderful... before behavior plugin, i used to convince myself that the extra effort is worth it because it creates more readability and reusability by separating out methods that attach events etc. But, now, u r making me lazy, and i am really glad u are ;-) Thanks brandon, for this wonderful

[jQuery] Re: What to do when a plugin's css gets in your way

2007-08-20 Thread Mitch
I am beginning to have my own concerns about jTip. My jTips work fine in FF but in IE7 they are all shifted to the right by a fixed amount and I dont understand why or have a clue (ha ha) on how to fix it. I am going to post on this list and see if any one has a clue and maybe a tip. (ok ok

[jQuery] Why do my tooltips slide to the right in IE and are fine in FF

2007-08-20 Thread Mitch
My jTips work fine in FF but in IE7 they are all shifted to the right by a fixed amount and I dont understand why or have a clue (ha ha) on how to fix it. If you go to this page and pass the cursor over the bird Acadian Flycatcher you will see what I mean.

[jQuery] Re: Simulate foucs on any div, really get Firebug and use it

2007-08-20 Thread Mitchell Waite
Aaron I was about to ge the vertical scroll bar to appear but not with body { height: 100% } I had to use body ( height: 900px } Do you have a clue as to why 100% wont work? Here is the link again. http://www.whatbird.com/wwwroot/Components/Complete_Search_Tab.html You were right, the

  1   2   >