[jQuery] css background-color not exists in IE with more then 2 classes..

2009-05-20 Thread Mech7
Does anybody know why in IE: jQuery.css(e, "background-color");jQuery.css(e, "background-color"); Not works on a elementl like: But will work with..

[jQuery] Re: Setting hidden field value in html

2009-05-20 Thread Michael Geary
Hmm... I just tried a quick and dirty test and it seemed to work the way you'd want. I opened this page: http://docs.jquery.com/Main_Page And opened the Firebug console and entered these expressions in the console: $('#jq-primarySearch').val( 'test' ); That put the expected text in the search

[jQuery] Re: jQuery Cycle plugin (help show/hide slide shows on same page)?

2009-05-20 Thread MiD-AwE
Just to clarify; I have two slide shows using the cycle plugin. They are both set to display using the same css. Only one should display at a time, I want the page to load with one shown and the other hidden, then after a link is clicked the slide shows should toggle to display the previously hidd

[jQuery] Re: Cluetip from a function?

2009-05-20 Thread Karl Swedberg
I don't think so. Have you given it a try? Seems like a smart idea. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On May 12, 2009, at 5:55 AM, DotnetShadow wrote: Hi there, Is it possible to load cluetip from a function, such as: function showtooltip(ite

[jQuery] Re: cluetip problem on iPhone/Mobile Safari

2009-05-20 Thread Karl Swedberg
Hi Matt, I wish I had an iPhone to test this out with, and I wish I had a solution to your problem. Anyone else know a possible workaround? --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On May 19, 2009, at 12:38 PM, Matt Riley wrote: First off, a quick

[jQuery] Re: Setting hidden field value in html

2009-05-20 Thread eclipseTalk
Thanks for your reply. This is what I'm trying to achieve: - I have a form where a user can select items to order - While still in the form, I use JQuery to provide a preview of the order. The text is displayed in a popup dialog. It is formatted in html. - I want to save this html preview into a

[jQuery] Submit form when hitting enter

2009-05-20 Thread Nic Hubbard
I have a form that I built, and I replaced the submit button with an image. When you click the image, it calls the .submit() jQuery function and submits the form. Because I am not using the normal submit input button, hitting enter in most browsers won't submit the form. I think that users are

[jQuery] jQuery.Scrollable

2009-05-20 Thread tfat
Hi, Hoping someone who uses or knows of this plug-in, i.e: http://flowplayer.org/tools/scrollable.html knows how to change the Navigator to be actual descriptions/names of each panel - basically like a breadcrumb menu. Is this possible? If yes, would really appreciate any examples to assist m

[jQuery] Re: Setting hidden field value in html

2009-05-20 Thread Michael Geary
.val(foo) sets the value attribute of the selected DOM element(s). Being an attribute, it can't contain HTML. It would be as if you had this code in your page: That wouldn't be valid HTML. I'm not sure what to suggest instead, because I'm not sure what your goal is. Could you back up a level a

[jQuery] Re: dom ready takes very long in IE 8

2009-05-20 Thread Mech7
Ah i found it's because the SWF Object 2.2 beta :-) changed to 2.1 and works faster... On May 21, 10:38 am, Mech7 wrote: > Ah I found out it's because SWFObject... does anybody know how a > solution to this? > > On May 21, 10:28 am, Mech7 wrote: > > > I am hiding a login panel like: > > > $(doc

[jQuery] Re: dom ready takes very long in IE 8

2009-05-20 Thread Mech7
Ah I found out it's because SWFObject... does anybody know how a solution to this? On May 21, 10:28 am, Mech7 wrote: > I am hiding a login panel like: > > $(document).ready(function() { >         $("#login").css({marginTop: "-105px"}); > > }); > > But in IE 8 it takes very long to hide? I don't

[jQuery] dom ready takes very long in IE 8

2009-05-20 Thread Mech7
I am hiding a login panel like: $(document).ready(function() { $("#login").css({marginTop: "-105px"}); }); But in IE 8 it takes very long to hide? I don't like to set it in CSS because if javascript is turned off people can still login as it is visible... is there anyway to make it faste

[jQuery] Setting hidden field value in html

2009-05-20 Thread eclipseTalk
Hello, I have an hidden field in a form defined as follow: To assign its value I used: var contentText = "Order Preview"; $("input[name='previewText']").val(contentText); It works fine but the html code is lost. Is there a way to retain the html format? Thank you

[jQuery] Re: Compatibility Issues

2009-05-20 Thread Dave Methvin
> I have a client using 1.1.4.js and we are using 1.2.6.min.js. If the > client upgrades, will it break their 1.1.4.js code? Is there any way > to tell? The best way to tell is to test it. It will depend on what features they (and the plugins they use) are using. The release notes will tell you w

[jQuery] Re: adding $("

2009-05-20 Thread Michael Geary
If you don't want your script to be executed, don't use a

[jQuery] Re: adding $("

2009-05-20 Thread Dave Methvin
> I don't want to execute it. I want to print it out to the html page so the > user knows how to embed this stuff on their page. It sounds like you want .text() then. That will not interpret html code.

[jQuery] Re: Onwidow resize element width

2009-05-20 Thread dPO
I hav been able to get most of the script workin all that remains is it the end variable for the IF . Current script so far (function($){ $.fn.testwidth = function(){ var element = this; $(element).load(function(){ changeCss(); $(window).bind("resize", function(){ changeCss(); }); func

[jQuery] IE 'Member not found" on line 2840

2009-05-20 Thread Veeru
Hi there Ran into this strange situation. Everything works fine in firefox and opera, but in IE, i get an error saying "Member not found", pointing to line 2840 on jquery-1.3.2.js - this is the line e.returnValue = false; any suggestions for this problem? Thanks Vru

[jQuery] Re: traverse complete DOM of a webpage

2009-05-20 Thread RobG
On May 20, 8:35 pm, Sourabh wrote: > Hi > > I am new to jQuery.I have a problem where I want to traverse through > DOM.For example a complete webpage.Is there any jQuery way to traverse > complete DOM of the current page where the jQuery script resides ? Traversing the DOM is trivial, using rec

[jQuery] Re: cycle plugin with keyboard

2009-05-20 Thread victor kobs
see this web site www.stunicholls.com in gallery section...

[jQuery] cycle plugin with keyboard

2009-05-20 Thread runrunforest
In cycle plugin, ss there way to switch images by keyboard arrows instead of clicking "next, prev"

[jQuery] Re: adding $("

2009-05-20 Thread Paul Tarjan
I don't want to execute it. I want to print it out to the html page so the user knows how to embed this stuff on their page. If you actually run the code in the OP, it DOES execute, which was very unexpected. On 5/20/09 2:58 AM, "Ricardo" wrote: > > I don't see the point. That script tag you

[jQuery] AUTO: Michael Lawson is out of the office (returning 05/26/2009)

2009-05-20 Thread Michael Lawson
I am out of the office until 05/26/2009. Enjoying a weekend of anime geekdom at Animazement in Raleigh NC. www.animazement.org If you have any questions or concerns, please contact Leena Paulose Note: This is an automated response to your message "[jQuery] Re: How to print json data, key an

[jQuery] loading message

2009-05-20 Thread macsig
Hi guys, I'm working on a Rails app connected to a legacy database. Since the reading process from the database takes several seconds (up to ten) I would like to display a loading message while the page is loading. Can I achieve that using jQuery? If so how? Thanks and have a nice day. Sig

[jQuery] Re: How to convert csv file to json

2009-05-20 Thread Michael Geary
Hi Nitin, Are you trying to do this conversion in JavaScript, or on your server? Parsing a CSV file as simple as this one is trivial, in JavaScript or in any reasonable server language. (BTW, you wouldn't convert it to JSON, but to a two-dimensional array.) Ah... I just checked your bytes.com po

[jQuery] jQuery Cycle plugin (help show/hide slide shows on same page)?

2009-05-20 Thread MiD-AwE
Hi all, I'm trying to setup multiple cycle slide shows on the same page; Only they occupy the same space on the page. So, I'm trying to hide the second slide show right away (no problem showing the first automatically), but when I attempt to hide the first and show the second, nothing happens. Is

[jQuery] Re: Replace newline char with comma using jquery

2009-05-20 Thread Nitin Sawant
I've posted this topic on bytes.com also, pls help me http://bytes.com/topic/javascript/answers/869610-convert-google-finance-data-array regards, Nitin Sawant On May 20, 4:03 pm, Nitin Sawant wrote: > Hello Liam, >       Thanks for your reply, > > i'm retrieving csv file from google finance an

[jQuery] Re: How to convert csv file to json

2009-05-20 Thread Nitin Sawant
I've posted that topic on bytes.com also http://bytes.com/topic/javascript/answers/869610-convert-google-finance-data-array On May 20, 7:45 pm, brian wrote: > There's quite a difference between the two. JSON uses a key: value > format, while CSV is generally value only > > > > On Wed, May 20, 2

[jQuery] Re: How to convert csv file to json

2009-05-20 Thread Nitin Sawant
Hello, Thanks for your reply. Actually i'm retrieving data from google finance site in csv format. http://finance.google.com/finance/historical?q=GOOG&startdate=May+1%2C+2009&enddate=May+5%2C+2009&start=225&num=25&output=csv I want to convert that data to json or any suitable f

[jQuery] Re: EasySlider 1.5: Tabbing through forms

2009-05-20 Thread Jack Killpatrick
I suspect you might have to have the focus() event on each field (or a delegate for it) do something to figure out what slide the focused field is in and have a function to move to that slide (or fire the click handler for "Next"). I don't remember seeing any slider plugins that will do that na

[jQuery] Re: FormCheck Validation

2009-05-20 Thread Jörn Zaefferer
Its certainly not a clone of that mootools plugin, but a good choice for a jQuery validation plugin is this: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ Let me know if you have specific questions about it. Jörn On Wed, May 20, 2009 at 8:09 PM, Isaac Gonzalez wrote: > > Hi ev

[jQuery] Re: SOT: execute JS before a specific image loads

2009-05-20 Thread Michael Geary
Use a tag for the non-JavaScript case, and a tag with document.write() for the JavaScript case: