[jQuery] Re: image preload problem (encore)

2007-09-26 Thread Mika Tuupola
On Sep 26, 2007, at 2:47 AM, dimitrisX wrote: I am trying to preload some images using either one of the functions below. They don't seem to load. I really could use your help here. Something similar which works for me. Maybe you can find answer from there?

[jQuery] Re: Verizon Wireless website using jQuery?

2007-09-26 Thread Olmo Maldonado
@Michael: just do in the url address bar: javascript:alert(MooTools.version); @Erik: Hahaha. :D We are modular ;). -Olmo Maldonado MooTools Developer http://mootools.net On Sep 20, 4:31 pm, Erik Beeson [EMAIL PROTECTED] wrote: Those MooTools punks stole our filesize! --Erik On 9/20/07,

[jQuery] Parent Child Selectors + bind

2007-09-26 Thread Anjanesh
Hi I cant get this seem to work $(#id1 [EMAIL PROTECTED]).bind(onfocus, foo); Is there something wrong with the argument ? Thanks

[jQuery] Using .children recursively

2007-09-26 Thread voltron
I am trying to get all the children of a node, apart from adding .children() for every generation, is there one call that gets all recursively? this is what I´m doing at the moment $(this).children().children().removeAttr(name);

[jQuery] Re: from builtwith.com, with love: jquery leads ahead

2007-09-26 Thread Olmo Maldonado
Cool 0.78%. Now it's 1.21% ... Nice. Weird jQuery is now 1.83%? Must be a mistake? -Olmo Maldonado MooTools Developer http://mootools.net/ schnuck wrote: i know... but still not bad at all: MooTools MooTools is a compact, modular, Object-Oriented JavaScript framework designed for the

[jQuery] Attribute renaming

2007-09-26 Thread voltron
I have tags like this: select id=academic_from_month-0 select id=academic_till_month-0 since the ids are variable in length, I would have to find out where the lastindex() of - is remove that and replace it it with the new value. My problem is the syntax, is there some kind of Jquery way to do

[jQuery] Re: UI tabs - find unique

2007-09-26 Thread Dmitrii 'Mamut' Dimandt
Richard D. Worth wrote: Please ask on the jQuery UI list: http://groups.google.com/group/jquery-ui Sorry, didn't realize there was one :)

[jQuery] Re: Jquery Vs. Prototype

2007-09-26 Thread Olmo Maldonado
You're making MooTools sound like it's a fork from Prototype. I'd argue that there's fundamental and code differences between the two. Mitchell, I believe the impressions MooTools leave should be experienced rather than explained :-\. -Olmo Maldonado MooTools Developer http://mootools.net/

[jQuery] Re: Attribute renaming

2007-09-26 Thread voltron
I am trying to rename the ids and name attributes On Sep 26, 10:06 am, Erik Beeson [EMAIL PROTECTED] wrote: What are you trying to accomplish? --Erik On 9/26/07, voltron [EMAIL PROTECTED] wrote: I have tags like this: select id=academic_from_month-0 select id=academic_till_month-0

[jQuery] Re: New Plugin: Picklists

2007-09-26 Thread Enrique Meléndez Estrada
I think the pattern would be: both multiselectors side by side, and arrows to left and right indicating moving options from left selector to the right and viceversa (instead of add and remove buttons). Also its better to physically remove options from selector From, instead of greying them,

[jQuery] Re: Using .children recursively

2007-09-26 Thread george.gsgd
You don't need to use children, that's for if you only want the children... Try this: $('[name]', this).removeAttr(name); http://docs.jquery.com/Selectors for more info That'll do what you're attempting On Sep 26, 8:35 am, voltron [EMAIL PROTECTED] wrote: I am trying to get all the children

[jQuery] cannot retrieve elements with xpath

2007-09-26 Thread julio
Hi, I have this simple html page: html headtitleA test page/title/head script type=text/javascript src=jquery.js/script body script $(//[EMAIL PROTECTED]'2']).hide(); $(//[EMAIL PROTECTED]'3']).hide(); /script h1 myattr=1test-row1/h1 another row h1 myattr=1test-row2/h1 img myattr=2 src=pic1.png

[jQuery] Re: Attribute renaming

2007-09-26 Thread Erik Beeson
Rename them from what to what? To change the id of all selects, you can do: $('select').each(function() { var oldId = $(this).attr('id'); $(this).attr('id', oldId.substring(0, oldId.lastIndexOf('-'))); }); I'm still not sure what you actually want to do though. --Erik On 9/26/07, voltron

[jQuery] Re: Attribute renaming

2007-09-26 Thread voltron
Hi Erik, I am cloning a DIV container full of elements( selects, inputs and buttons), they all inherit the name of the original element, but to differentiate between all, I want to rename all the clones attributes sequentially, example div name= container input name=color input name=house /dv

[jQuery] Re: Validate plugin limited? with line error

2007-09-26 Thread Jean
Yes, thanks for help! http://www.interalfa.com.br/questionarios/questionario.php?cod=31 On 9/25/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Jean schrieb: Sorry for my previous email talking about the limitation of Validate plugin with 50 or more elements to validade. Is not an error but

[jQuery] Re: Attribute renaming

2007-09-26 Thread Erik Beeson
How about something like (untested): $('#container').clone().attr('id', 'container'+idx).find('*').each(function() { this.name += idx; this.id += idx }).end().appendTo(...); How you deal with 'idx' is up to you. So that's: select the element with ID 'container', clone it, update the clone's

[jQuery] tablefilter preview

2007-09-26 Thread James Dempster
Hi Group, I've been writing a tablefilter plugin to sit along side tablesorter from Christian Bach. It will supply multi column filtering. Have support for different filter types, e.g. text (case sensitive/ insensitive), numeric, regex + any more people might add. It will be optional on wether

[jQuery] Re: Events not attaching; jquery 1.2.1 and interface elements 1.2

2007-09-26 Thread kalath
I noticed this too except it has to do with the slider widget from interface. It would seem that there's a javascript error being thrown that has to do with the jquery xpath plugin that is required once you upgrade to 1.2. I have not yet found a solution though... Ryan On Sep 19, 2:41 am,

[jQuery] Re: Using interface for tooltips: tips appear under form dropdowns?

2007-09-26 Thread jsandppr
Yes, I should have said. IE only. Firefox is fine. I'll try this plug-in tomorrow! Thanks! On Sep 25, 9:00 pm, Karl Swedberg [EMAIL PROTECTED] wrote: is that happening in Internet Explorer only? If so, the bgiframe plugin can help.

[jQuery] jCorner plugin not working as expected

2007-09-26 Thread Mark
Hello, I am having issues with Internet Explorer browsers and the jCorner plugin. As a refrence, lets use www.augustine.com/vacation/index.php - but there are many other pages on this site using corners where it breaks also. You can break the corners by having your mouse corner IN the browser

[jQuery] newb: How to get google groups like layout

2007-09-26 Thread crybaby
All the boxes, background colors, and rounded corners done using javaScript or css? Can I do similar layout, look and feel, with jQuery alone(without images) or combination of jQuery and CSS? thanks

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

2007-09-26 Thread ZAP
I also ran into this problem, and it was truly vexing. I was trying to POST to an XML file (dynamically generated by PHP), and the server didn't allow that so no POST vars were being received. Very glad I stumbled across this post, since otherwise I'd probably be hacking together a GET version or

[jQuery] Re: Odd Ajax problem:

2007-09-26 Thread sgrover
Thanks Pops. I ended up generating the HTML in my PHP code, then just doing a .load(). (yeah, lazy way out, I know, but... :) I'll keep your tip in mind though. I'll be doing a lot of Ajax with this app and will likely see this again soon. Shawn Pops wrote: Note, in my example url:

[jQuery] Re: Using .children recursively

2007-09-26 Thread meisen2002
不懂你的意思 On 9月26日, 下午3时35分, voltron [EMAIL PROTECTED] wrote: I am trying to get all the children of a node, apart from adding .children() for every generation, is there one call that gets all recursively? this is what I m doing at the moment $(this).children().children().removeAttr(name);

[jQuery] Change background based of time of day using jquery

2007-09-26 Thread bsuttis
I'm curious if I could use jquery to change my body's background based on time of day. I'm not looking to do this server-side with php, I would like the background to change based on the visitor's time, not the server's. I've found this code, just wondering if I can jquery-ize: script var now =

[jQuery] Re: Jquery Vs. Prototype

2007-09-26 Thread meisen2002

[jQuery] Unexcpected Quantifier in IE6 (1.2.1 SVN)

2007-09-26 Thread [EMAIL PROTECTED]
The problem is occurring on line 822 (from the current SVN code), /^\[ *(@)([a-z0-9_-]*) *([!*$^=]*) *('??)(.*?)\4 *\]/i, It only throws the error in IE6, I have been led to believe it is something to do with *, but I am unfortunately totally regexp retarded. Any insight would be appreciated.

[jQuery] Error .ajax and etc in jQuery

2007-09-26 Thread jkeks
I tryed to do .ajax call: {alert(reg_email); $.ajax ({url:register.php, type:GET, data: {reg_email:reg_email ,reg_pass1:reg_pass1,reg_fio:reg_fio,reg_tel:reg_tel}, success:function(data){$(#reg_agree).val(Готово);$

[jQuery] Re: Event Delegation and this question

2007-09-26 Thread Matt81
Hi. Thanks for the replies guys. I'll try what you've suggested when I get into work today... will hopefully be what I'm looking for. Again, many thanks. On 25 Sep, 22:55, Michael Geary [EMAIL PROTECTED] wrote: I think event.target is what you're looking for all around, does that sound

[jQuery] Re: Tablesorter dd/mm/YYY date problem

2007-09-26 Thread Kia Niskavaara
A suggestion is that all parsers (except the basic ones) are removed from the plugin, and selectable from an archive. This is very useful for custom date sorters etc, and will make the plugin even smaller. Jean wrote: Have i write my parser for dd/mm/ date format? The plugin use

[jQuery] Re: weird problem with remove or toggle Class

2007-09-26 Thread kamiseq
ok the problem was that i forgot about return false, and as it was elements they redirect me to no existing address. Ech how i could forgot about such a thing:-) Glen Lipka wrote: Can you post this example online? Glen On 9/25/07, kamiseq [EMAIL PROTECTED] wrote: I ve just

[jQuery] Re: Attribute renaming

2007-09-26 Thread [EMAIL PROTECTED]
I have tags like this: select id=academic_from_month-0 select id=academic_till_month-0 since the ids are variable in length, I would have to find out where the lastindex() of - is remove that and replace it it with the new value. My problem is the syntax, is there some kind of Jquery way

[jQuery] Re: Jquery Vs. Prototype

2007-09-26 Thread meisen2002
顶一下

[jQuery] Selector that works in Firefox but not IE and Opera

2007-09-26 Thread Nachenko
Hi everyone. I'm using the round plugin, latest jQuery recommended version and this piece of code to get things done. It works fine in Firefox, but fails in IE and Opera. I used this: $(document).ready( function() { $(div.round-container).corner(round 15px); } );

[jQuery] Re: Avoid enter keypress to submit form

2007-09-26 Thread [EMAIL PROTECTED]
1. remove the type=submit button. you need to also use javascript to submit form. Really? Try this: form action=#test method=post input / /form 'Enter' works for me in FF (I didnt check on other browsers) Michael

[jQuery] Re: cannot retrieve elements with xpath

2007-09-26 Thread Remy Sharp
You need to wrap the jQuery in a 'ready' method - otherwise your JS is running before the DOM is ready: $(function () { $(//[EMAIL PROTECTED]'2']).hide(); $(//[EMAIL PROTECTED]'3']).hide(); }); Making this change works. On Sep 26, 10:45 am, julio [EMAIL PROTECTED] wrote: Hi, I have this

[jQuery] Time Entry restrictions

2007-09-26 Thread sgrover
I'm using the time entry plugin at http://home.iprimus.com.au/kbwood/jquery/timeEntry.html. (BTW, this plugin is a GODSEND - Great work!) I have set the timeSteps parameter like so: timeSteps: [1,15,0] this works great, except I'm defaulting the input box to the current time. This results

[jQuery] Re: Tablesorter dd/mm/YYY date problem

2007-09-26 Thread Christian Bach
I like the idea! I don't have the time to put together such a solutions, is anyone interested in helping out? /christian 2007/9/26, Kia Niskavaara [EMAIL PROTECTED]: A suggestion is that all parsers (except the basic ones) are removed from the plugin, and selectable from an archive.

[jQuery] nonsecure items

2007-09-26 Thread Dimitris
Hi, I am using thickbox in an SSL enviroment. This thickbox uses JQeury, but when the page loads I get a message in IE7 that there are nonsecure items on the page. When I exclude following tag from my page script type=text/javascript src=../Js/jquery.js/script everything works fine so I guess

[jQuery] Re: Parent Child Selectors + bind

2007-09-26 Thread Remy Sharp
You're binding to 'onfocus' when it should be 'focus': $(#id1 [EMAIL PROTECTED]).bind(focus, foo); On Sep 26, 8:35 am, Anjanesh [EMAIL PROTECTED] wrote: Hi I cant get this seem to work $(#id1 [EMAIL PROTECTED]).bind(onfocus, foo); Is there something wrong with the argument ? Thanks

[jQuery] Re: Using .children recursively

2007-09-26 Thread Erik Beeson
This will find all descendants: $(this).find('*'); --Erik On 9/26/07, voltron [EMAIL PROTECTED] wrote: I am trying to get all the children of a node, apart from adding .children() for every generation, is there one call that gets all recursively? this is what I´m doing at the moment

[jQuery] Re: cannot retrieve elements with xpath

2007-09-26 Thread julio
it doesn't work for me. I have used $(function() { and $(document).ready(function() { but nothing works I'm using firefox 2.0.6 On 26 Set, 13:33, Remy Sharp [EMAIL PROTECTED] wrote: You need to wrap the jQuery in a 'ready' method - otherwise your JS is running before the DOM is ready:

[jQuery] Re: Parent Child Selectors + bind

2007-09-26 Thread Erik Beeson
Also, your initial selector can be simplified to: $(#id1 :text) --Erik On 9/26/07, Remy Sharp [EMAIL PROTECTED] wrote: You're binding to 'onfocus' when it should be 'focus': $(#id1 [EMAIL PROTECTED]).bind(focus, foo); On Sep 26, 8:35 am, Anjanesh [EMAIL PROTECTED] wrote: Hi I

[jQuery] Re: Tablesorter dd/mm/YYY date problem

2007-09-26 Thread Jean
Unfortunally i´m a jquery noob =/ On 9/26/07, Christian Bach [EMAIL PROTECTED] wrote: I like the idea! I don't have the time to put together such a solutions, is anyone interested in helping out? /christian 2007/9/26, Kia Niskavaara [EMAIL PROTECTED]: A suggestion is that all

[jQuery] Re: cannot retrieve elements with xpath

2007-09-26 Thread Erik Beeson
If you're using jQuery 1.2 or later, you need the XPath plugin. See here: http://docs.jquery.com/Release:jQuery_1.2#XPath_Compatibility_Plugin --Erik On 9/26/07, julio [EMAIL PROTECTED] wrote: it doesn't work for me. I have used $(function() { and $(document).ready(function() { but

[jQuery] Re: Unexcpected Quantifier in IE6 (1.2.1 SVN)

2007-09-26 Thread John Resig
Could you bring this up on the dev list, along with a case where it occurs? Thanks! http://groups.google.com/group/jquery-dev --John On 9/25/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: The problem is occurring on line 822 (from the current SVN code), /^\[ *(@)([a-z0-9_-]*) *([!*$^=]*)

[jQuery] Re: image preload problem (encore)

2007-09-26 Thread dimitrisX
Thanks for your reply. I want to present a series of images (70k each) as a slideshow when the page loads. I am currently using the innerfade plugin for that purpose. So, to be unobstrusive I include an image in my html so that in case js is disabled in the browser the client sees only that

[jQuery] Re: cannot retrieve elements with xpath

2007-09-26 Thread julio
I'm using (compressed) jquery version 1.2.1 I have downloaded plugin and renamed it I have transformed my test page like this: html head titleA test page/title script type=text/javascript src=jquery.js/script script type=text/javascript src=jquery.xpath.js/script /head body script

[jQuery] Re: $(function()

2007-09-26 Thread Danjojo
Cool. I found the anonymous function on wikipedia http://en.wikipedia.org/wiki/Anonymous_function On Sep 25, 5:49 pm, Matt Stith [EMAIL PROTECTED] wrote: Using a function like that is called an anonymous function, and in this case you are passing the anonymous function to the jQuery object,

[jQuery] Re: $(function()

2007-09-26 Thread Danjojo
Thank you. I commented my code and also altered my code to use $ (document).ready(function() { etc.. Totally helps me understand we are just initiating the Jquery code again to do something new, whe I see it in long form :) On Sep 25, 9:03 pm, Karl Swedberg [EMAIL PROTECTED] wrote: That

[jQuery] Re: Tablesorter dd/mm/YYY date problem

2007-09-26 Thread Christian Bach
To change the date-format to the one you requested just pass the dateFormat options like this: $(table).tablesorter({dateFormat: 'uk'}); /christian 2007/9/26, Jean [EMAIL PROTECTED]: Unfortunally i´m a jquery noob =/ On 9/26/07, Christian Bach [EMAIL PROTECTED] wrote: I like the idea!

[jQuery] Re: nonsecure items

2007-09-26 Thread Brandon Aaron
Did you try removing any plugins first? It might actually be the plugins causing the problem and since you remove jquery.js it just looks like the problem is solved. However, the plugins just aren't running either. -- Brandon Aaron On 9/26/07, Dimitris [EMAIL PROTECTED] wrote: Hi, I am

[jQuery] Re: Tablesorter dd/mm/YYY date problem

2007-09-26 Thread Jean
Unfortunally dont works, it is sorting like mm/dd/ =/ Ow i forgot to say some cells have text like no prevision where dont have a date. On 9/26/07, Christian Bach [EMAIL PROTECTED] wrote: To change the date-format to the one you requested just pass the dateFormat options like this:

[jQuery] Re: Focusfields

2007-09-26 Thread Sam Collett
I can replicate the error: http://www.texotela.co.uk/code/jquery/focusfields/?jqver=1.2.1 I will see what is causing the problem. On Sep 25, 4:31 pm, Charles Sheehan-Miles [EMAIL PROTECTED] wrote: Hello all, I'm new to jquery, so forgive me if I'm asking questions which have been asked a

[jQuery] Re: newb: How to get google groups like layout

2007-09-26 Thread george.gsgd
Oh dear, I think you've completely misunderstood what jQuery is for. Think of a webpage as three separate elements that make up the finished product: 1. Content (the HTML) 2. Presentation (the CSS) 3. Behaviour (the javascript, in this case jQuery) First port of call would be HTML Dog to learn

[jQuery] Re: dimensions issue?

2007-09-26 Thread Eridius
I though if a selector return nothing and i tried to call a method, it would just fail by saying that the method i called is not a function. Brandon Aaron wrote: The jQuery collection is empty ... meaning it didn't match any any elements. Which means my_element.length == 0 -- Brandon

[jQuery] Re: nonsecure items

2007-09-26 Thread Weaver, Scott
9 times out of 10 this caused by an iframe that has no src attribute defined. I usually fix this by adding src=javascript:void(0). I have heard that others have encountered issues using this workaround however; I have never had any problems with it. -scott -Original Message- From:

[jQuery] g has no properties?

2007-09-26 Thread Danjojo
I am doing a simple imageChange onLinkHover... I get the following error in Firebug everytime I hover over a link. But the image swaps work GREAT in all browsers. Except for the fact I see the error getting thrown in the browsers I am fine. g has no properties handleHover(Object type=mouseout

[jQuery] Re: input type text toUpperCase() jquery question

2007-09-26 Thread Andy Matthews
Why would you even want to use Javascript for this? Just use CSS: input { text-decoration: uppercase; } _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Frank Tudor Sent: Tuesday, September 25, 2007 12:30 PM To: jQuery (English) Subject: [jQuery] Re: input

[jQuery] Re: $.ajax ?

2007-09-26 Thread Andy Matthews
The .ajax() method is built into jQuery. So as long as you have the jQuery library, you're good to go. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Danjojo Sent: Tuesday, September 25, 2007 6:52 AM To: jQuery (English) Subject: [jQuery]

[jQuery] Re: newb: How to get google groups like layout

2007-09-26 Thread Danjojo
Yes with a combination of jQuery and CSS you can do it... Rounded corners are still a tricky artform... in my oppinion. http://www.google.com/search?source=ighl=enq=jquery+rounded+corners On Sep 25, 7:38 pm, crybaby [EMAIL PROTECTED] wrote: All the boxes, background colors, and rounded

[jQuery] ui slider plugin

2007-09-26 Thread Christof Donat
Hi I am having problems with the UI slider plugin. I have this HTML structure (bulilt with DOM): div id=hue style=float: right; margin-top: 5px; background-image: url(img/hue.png); width: 18px; height: 186px; img id=hueSlider src=img/handle.gif style=left: 232px;/

[jQuery] Re: g has no properties?

2007-09-26 Thread Andy Matthews
As an aside, you might consider streamlining your code a little. Instead of having one method for each image, just do something like this: img src=images/originalimage.jpg rel=images/cylinder.jpg class=swapImages / img src=images/originalimage_02.jpg rel=images/mgp_swap.jpg class=swapImages /

[jQuery] Re: cannot retrieve elements with xpath

2007-09-26 Thread julio
Using develop version of jquery 1.2.1 it doesn't work but using version 1.1.4 (and so without plugin) it works can be it considered a jquery 1.2.1 bug? On 26 Set, 14:01, julio [EMAIL PROTECTED] wrote: I'm using (compressed) jquery version 1.2.1 I have downloaded plugin and renamed it I

[jQuery] Re: g has no properties?

2007-09-26 Thread Andy Matthews
Oh... I just thought of something. The hover method is actually supposed to have two functions built into it. One for over, and the other for out. I wonder if that's why you're getting the error. Should look like this: $(.swapImages).hover(function() { var newSRC = $(this).attr(rel);

[jQuery] Re: input type text toUpperCase() jquery question

2007-09-26 Thread Danjojo
omgosh.. I did not even know CSS could do that! Is that CSS-2? or -3? On Sep 26, 9:18 am, Andy Matthews [EMAIL PROTECTED] wrote: Why would you even want to use Javascript for this? Just use CSS: input { text-decoration: uppercase; } _ From: jquery-en@googlegroups.com

[jQuery] Re: g has no properties?

2007-09-26 Thread Karl Swedberg
The problem here is that .hover() takes two arguments, one for mouseover and one for mouseout. So it should look like this: .hover(function() { // Stuff to do when the mouse enters the element; }, function() { // Stuff to do when the mouse leaves the element; }); If you just want to do

[jQuery] Re: g has no properties?

2007-09-26 Thread Danjojo
Hmmm.. well that would kill 2 birds with one stone... My boss was thinking on hover off it should go back to the original image.. I guess... I don't know... where I land on that UI issue On Sep 26, 9:29 am, Andy Matthews [EMAIL PROTECTED] wrote: Oh... I just thought of something. The

[jQuery] Re: input type text toUpperCase() jquery question

2007-09-26 Thread Karl Swedberg
It's CSS 2. But it should be this: input { text-transform: uppercase; } However, that will only change the way the text is displayed, not the actual case of the text itself. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Sep 26, 2007, at 9:32 AM,

[jQuery] Re: Focusfields

2007-09-26 Thread Sam Collett
Found out the cause, but not sure how to work around it at the moment: http://www.texotela.co.uk/wrapexpandos.php On Sep 26, 1:47 pm, Sam Collett [EMAIL PROTECTED] wrote: I can replicate the error:http://www.texotela.co.uk/code/jquery/focusfields/?jqver=1.2.1 I will see what is causing the

[jQuery] Building my own datepicket - limting clicks to only two?

2007-09-26 Thread Andy Matthews
I'm building a datepicker which will only display the last 2 complete months. I'd like the user to be able to click to select any two days in two calendars and load a date range. The catch is that I want to limit it to two clicks only. Once the second click has been made, you either have to

[jQuery] Re: dimensions issue?

2007-09-26 Thread Brandon Aaron
Most jQuery methods will work on 0 or more elements. However some methods require at least one element. These methods usually return some value related to the element. The only time you would see an error like method i called is not found is if you don't include a plugin's script file before using

[jQuery] Re: input type text toUpperCase() jquery question

2007-09-26 Thread Danjojo
thats the same thing I was wondering.. if you submitted the form field via server-side code would it also see the text as uppercase... something to watch out for Frank. On Sep 26, 9:38 am, Karl Swedberg [EMAIL PROTECTED] wrote: It's CSS 2. But it should be this: input { text-transform:

[jQuery] Re: input type text toUpperCase() jquery question

2007-09-26 Thread Andy Matthews
2 Just apply that rule to your input field in whatever manner you choose. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Danjojo Sent: Wednesday, September 26, 2007 8:32 AM To: jQuery (English) Subject: [jQuery] Re: input type text

[jQuery] Re: input type text toUpperCase() jquery question

2007-09-26 Thread Andy Matthews
Ooops...sorry about that. I don't use that property all that often Knew I should have checked it. Thanks for correcting me Karl. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Wednesday, September 26, 2007 8:39 AM To:

[jQuery] Re: g has no properties?

2007-09-26 Thread Danjojo
I think I am starting to get lost... The links are supposed to be triggering the jQuery function... what class or id do they use? div class=MenuContent style=background: #FFF; height: 210px; p class=centered style=height: 80px; img id=imgLinkAct src=images/NCQ8_swap.jpg

[jQuery] Forms with asp.net

2007-09-26 Thread Sharique
Hi, Did anybody has tried jquery forms with asp.net? -- Sharique

[jQuery] Re: Forms with asp.net

2007-09-26 Thread Danjojo
What do you mean by jQuery forms? On Sep 26, 10:49 am, Sharique [EMAIL PROTECTED] wrote: Hi, Did anybody has tried jquery forms with asp.net? -- Sharique

[jQuery] Re: Change background based of time of day using jquery

2007-09-26 Thread Glen Lipka
Instead of document.write('body bgcolor=orange text=#FF') Use $(body).css(background-color,blue) or $(body).addClass(noon) I think the time part could potentially be a switch, but that's just readability. Glen On 9/25/07, bsuttis [EMAIL PROTECTED] wrote: I'm curious if I could use

[jQuery] Re: Using .children recursively

2007-09-26 Thread voltron
Thanks Erik! On Sep 26, 1:40 pm, Erik Beeson [EMAIL PROTECTED] wrote: This will find all descendants: $(this).find('*'); --Erik On 9/26/07, voltron [EMAIL PROTECTED] wrote: I am trying to get all the children of a node, apart from adding .children() for every generation, is there one

[jQuery] Re: g has no properties?

2007-09-26 Thread Danjojo
What I am trying now should work shouldn't it? $(.swapImages).hover(function(){ var newSRC = $(this).attr(rel); $(#imgLinkAct).attr(src,newSRC); } p class=centered style=height: 80px; img id=imgLinkAct

[jQuery] Re: g has no properties?

2007-09-26 Thread Danjojo
So I should be using onMouseOver instead of onHover? Thank you. On Sep 26, 11:06 am, Danjojo [EMAIL PROTECTED] wrote: What I am trying now should work shouldn't it? $(.swapImages).hover(function(){ var newSRC = $(this).attr(rel);

[jQuery] Re: g has no properties?

2007-09-26 Thread Danjojo
Sorry.. I can't go back and edit my own messages on google groups... I understand now. If only want mouseover behaviour then use it. If I want more mouseover and mouseout use hover. Although in trying to proserve the #id's original source value I cannot get it to work //method

[jQuery] Re: Change background based of time of day using jquery

2007-09-26 Thread Danjojo
Fun idea.. I might try that for the world of warcraft guild site I am building. On Sep 26, 10:51 am, Glen Lipka [EMAIL PROTECTED] wrote: Instead of document.write('body bgcolor=orange text=#FF') Use $(body).css(background-color,blue) or $(body).addClass(noon) I think the time part

[jQuery] Re: Attribute renaming

2007-09-26 Thread voltron
Thanks guys, I used a mixture of both your suggestions: var ident = String(this.name); changed= ident.substring(0 ,ident.lastIndexOf('-')+1) + suffix; $(this).removeAttr(id); $(this).removeAttr(name); this.name += changed; this.id += changed; $(this).attr(clone, changed); On Sep 26, 11:06

[jQuery] Re: Replace XPath Selectors and Removed DOM Traversal Methods

2007-09-26 Thread Muescha
maybe but i think it would be better to extract all selectors in external selectors pligins - so i can include the selector methods i need i dont like the css selectors - so i dont need it. On Sep 25, 8:37 pm, Danjojo [EMAIL PROTECTED] wrote: Was the main reason for the removal ofXPathfrom

[jQuery] Re: g has no properties?

2007-09-26 Thread Karl Swedberg
Hi, You're getting close. I think it'll work if you put the var orgSRC line above the .hover() method. That way, on mouseout you're always returning the src attribute to the same value: var orgSRC = $(#imgLinkAct).attr(src); //method

[jQuery] Re: Replace XPath Selectors and Removed DOM Traversal Methods

2007-09-26 Thread seedy
but a lot of plugins like css selectors. having multiple selector plugins could cause a dependency nightmare. Muescha wrote: maybe but i think it would be better to extract all selectors in external selectors pligins - so i can include the selector methods i need i dont like the

[jQuery] Re: New Plugin: Picklists

2007-09-26 Thread Chris W. Parker
On Wednesday, September 26, 2007 1:58 AM Enrique Meléndez Estrada said: I think the pattern would be: both multiselectors side by side, and arrows to left and right indicating moving options from left selector to the right and viceversa (instead of add and remove buttons). Also its better

[jQuery] for selector: XPath to CSS converter?

2007-09-26 Thread Muescha
is there a handy XPath to CSS converter available? i like to past to the converter a XPath from the FireFox Plugin XPather and get the CSS selector syntax.

[jQuery] catch events after dynamic insert/json

2007-09-26 Thread Aljosa Mohorovic
i have: $(a.delete).click(function() { alert(test) }); after i fetch some json data and append new html: // on json load $(div.items).append(a href='#' class='delete'test/a); click events on items inserted after json data is loaded are not working, how can i tell jquery to inspect DOM again and

[jQuery] for selector: XPath to CSS converter?

2007-09-26 Thread Muescha
is there a handy XPath to CSS converter available? i like to past to the converter a XPath from the FireFox Plugin XPather and get the CSS selector syntax.

[jQuery] Re: Time Entry restrictions

2007-09-26 Thread Josh Nathanson
Hey Shawn, Have a look at my plugin ClockPick - you can set the time intervals as you describe: http://www.oakcitygraphics.com/jquery/clockpick/trunk/ClockPick.cfm -- Josh - Original Message - From: sgrover [EMAIL PROTECTED] To: jquery-en@googlegroups.com Sent: Tuesday, September

[jQuery] Re: for selector: XPath to CSS converter?

2007-09-26 Thread Benjamin Sterling
If open you xml doc in firefox and then use firebug to inspect an element it will give you the full path to that element and that can be used at the selector. On 9/26/07, Muescha [EMAIL PROTECTED] wrote: is there a handy XPath to CSS converter available? i like to past to the converter a

[jQuery] Re: Building my own datepicket - limting clicks to only two?

2007-09-26 Thread Josh Nathanson
Andy, on the click event I think you would have to: - check to see if they are toggling from off to on - if they are, and there are already two on days, return false You can do this by checking the size of the jQuery object that is returned when selecting all on days (pseudo code follows): if (

[jQuery] Re: Building my own datepicket - limting clicks to only two?

2007-09-26 Thread Andy Matthews
Ah... That's a good idea...hadn't thought about that route. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh Nathanson Sent: Wednesday, September 26, 2007 11:40 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Building my own datepicket - limting

[jQuery] Re: changing the $

2007-09-26 Thread Wizzud
You probably need to look at this ... http://docs.jquery.com/Using_jQuery_with_Other_Libraries http://docs.jquery.com/Using_jQuery_with_Other_Libraries Tom Burns wrote: Hi, Using the $ in jQuery causes problems for my setup. Our template engine uses $ as its token to start paying

[jQuery] Re: changing the $

2007-09-26 Thread Benjamin Sterling
Ultimately you can use jQuery as in jQuery('selector') On 9/26/07, Wizzud [EMAIL PROTECTED] wrote: You probably need to look at this ... http://docs.jquery.com/Using_jQuery_with_Other_Libraries http://docs.jquery.com/Using_jQuery_with_Other_Libraries Tom Burns wrote: Hi, Using

[jQuery] Re: g has no properties?

2007-09-26 Thread Danjojo
Cool.. works nicely. The only downside is that I had 9 panels or categories that each had their own set of links and rollover images. And now the code would not be resusable. Weird how functions will not recognize a variable set in another function, is there really no way around it? Oh I bet I

[jQuery] Re: nonsecure items

2007-09-26 Thread Dimitris
I fixed it by downloading the latest JQuery.js file. Thx for the replies though On 26 sep, 15:06, Weaver, Scott [EMAIL PROTECTED] wrote: 9 times out of 10 this caused by an iframe that has no src attribute defined. I usually fix this by adding src=javascript:void(0). I have heard that

  1   2   >