[jQuery] Re: innerfade element with opacity and IE

2008-06-20 Thread tobaco
i don't think, that there is much you can do about it. you could change your approach and use a semi-transparent png24 as background-image for the caption instead of setting the opacity. this should do it. On 20 Jun., 01:26, aronduby [EMAIL PROTECTED] wrote: Hey everyone, I've run into an

[jQuery] Re: select all divs with the same name

2008-06-20 Thread andrea varnier
On 19 Giu, 21:50, ontguy [EMAIL PROTECTED] wrote: Hello, How would I select all divs with a certain name? what do you mean 'name'? id? that would be $('#mydelete') but it's like css, if you want a certain class $('.mydelete') and so on... http://docs.jquery.com/Selectors :)

[jQuery] Re: Why do i keep getting: test is not defined!

2008-06-20 Thread Mark
On Fri, Jun 20, 2008 at 1:51 AM, Josh Nathanson [EMAIL PROTECTED] wrote: Now why is this not working with a href? I have just no clue. My guess is that the context doesn't resolve correctly when you do javascript: in the href, so when you do this.parentNode, it probably thinks this is the

[jQuery] Re: Why do i keep getting: test is not defined!

2008-06-20 Thread Liam Byrne
How are you calling removeItem ? It needs two parameters - the name and the object reference. Liam Mark wrote: hey, function removeItem(name, obj) { var answer = confirm(Are you sure you want to delete: + name + ?) var test = obj; if (answer) {

[jQuery] Re: Why do i keep getting: test is not defined!

2008-06-20 Thread Mark
and i'm giving those 2! Here is the full stuff again (posted in my last and first post as well) Javascript: function removeItem(name, obj) { var answer = confirm(Are you sure you want to delete: + name + ?) var test = obj; if (answer) {

[jQuery] Re: What is the best way to send data betwen JS - PHP

2008-06-20 Thread Konstantin Tokar
but sometimes text contains \ or another istrange characters and not like to be correct send data in this way. ¿what is the best way? PHP - JS I use json, but for JS-PHP? JSON!!! function KT_RPC(subname, data, on_success, on_error){ jQuery.ajax({ 'type': POST, 'url':

[jQuery] conflict in list menu: overlapping lists

2008-06-20 Thread pepijn
i use this function to show/hide the second level. But when i use the slideDown method the sublevel menu sometimes is still visible during hovering another list item with classname niv1, so you get 2 levels overlapping and i don't want that of course. It is a crossbrowser problem. Is anyone

[jQuery] Re: Firefox is taking a long time to load an external script

2008-06-20 Thread Rene Veerman
how do you load it? On Thu, Jun 19, 2008 at 5:59 PM, cfdvlpr [EMAIL PROTECTED] wrote: For some reason, Firefox consistently takes about 30-40 seconds to load an external script. IE loads the script right away. The javascript is actually a JSP script that returns Javascript code for a live

[jQuery] Re: tablesorter: Glue two rows together

2008-06-20 Thread melwood
On 18 Jun., 15:16, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Here's an example:http://www.pengoworks.com/workshop/jquery/tablesorter/tablesorter.htm Wow, looks great, thanks! I didn't have time to look over the code yet, so one one question: When I expand the second row and make a

[jQuery] jquery.ajax does not handle UTF-8 HTML

2008-06-20 Thread evebill8
Hi folks, I was trying to use jquery ajax to receive the utf-8 HTML from a Java servlet. Even I set the servlet response to Content-Type: text/html; charset=utf-8, it still shows if there are utf-8 chars in the returning HTML. Now, my hack is to use utf-8 XML to wrap the HTML. It works,

[jQuery] Online Career resources study on careerbirds.com

2008-06-20 Thread careerbirds
20-6-2008 –walkin,IT FRESHER,IT EXP OPENINGS Online Career resources study on careerbirds.com http://www.hotjobseeker.com/ * Oracle Apps Techno Functional Consultant http://www.hotjobseeker.com/ * J2EE TECHNICAL ASSOCIATES AT PROKARMA AT HYDERABAD http://www.hotjobseeker.com/ *

[jQuery] Re: Get some text and replace it

2008-06-20 Thread Ischa Gast
You are my hero! Now I have this little email encrypter: // This is to prevent two searches var email = $('span.email'); email.html( email.html().replace(' [monkeytail] ', '@').replace(' [dot] ', '.') ).wrapInner('a href=mailto:' + email.text() + '/a'); What I had was

[jQuery] Re: JQuery variables

2008-06-20 Thread Neilz
Thanks for this response. Unfortunately, I am left with the problem that Internet Explorer doesn't seem to like the syntax $(#createNewAccount). It works fine in firefox - any suggestions please? On Jun 19, 10:33 pm, Hamish Campbell [EMAIL PROTECTED] wrote: Hi there. Best (or fastest) way

[jQuery] Re: firefox 3 RC1 : tremendous slow down

2008-06-20 Thread hagalaz
I'm experiencing the same issue. It's definitely something that should be pointed out to FF developers. The javascript in the beta version was supposed to be 3 times as fast as in FF2. http://mozillalinks.org/wp/2008/02/firefox-3-ultimate-feature-performance/

[jQuery] [validate] Validation is not working as expected. Input value deleted!

2008-06-20 Thread shapper
Hello, I am trying to validate and mask a text box that should contain a DateTime in the following format: -mm-dd hh:mm:ss The validation is not working as expected. The problem is: In a presence of a valid data I deleted a small part of it (ss). The mask is revealed for this part. If

[jQuery] Re: Resetting validation rules dynamically

2008-06-20 Thread kapowaz
I see one thing I've done wrong above; the arguments to the method provided to addMethod() should be (value, element) rather than just (element). Unfortunately having changed this, it's still not working; rather than getting a silent failure, the validation check is still being applied to the

[jQuery] Re: jquery form plugin - post method do not work in firefox3

2008-06-20 Thread Malthe Borch
pratikspace wrote: examples work fine. i dont know if this is something to do with perl. i am using modperl just to print the post parameter. thats it. nothing hard. the sample code i have provided above works perfectly fine on older firefox but not on firefox3. i am very puzzled. fwiw,

[jQuery] Re: tablesorter: Glue two rows together

2008-06-20 Thread Dan G. Switzer, II
Michael, Here's an example:http://www.pengoworks.com/workshop/jquery/tablesorter/tablesorter.h tm Wow, looks great, thanks! I didn't have time to look over the code yet, so one one question: When I expand the second row and make a resort, the second row is hidden again. Is it possible to let

[jQuery] Re: select all divs with the same name

2008-06-20 Thread Ariel Flesler
If you really meant 'name' then: $('div[name=foo]') -- Ariel Flesler http://flesler.blogspot.com On 20 jun, 05:26, andrea varnier [EMAIL PROTECTED] wrote: On 19 Giu, 21:50, ontguy [EMAIL PROTECTED] wrote: Hello, How would I select all divs with a certain name? what do you mean 'name'?

[jQuery] Re: slideDown and slideUp are jerky

2008-06-20 Thread Joe D'Andrea
Johnie, Greetings! On Jun 17, 11:47 pm, JohnieKarr [EMAIL PROTECTED] wrote: I have a site:www.lovinggodlovingyouonline.comthat the menu isjerky in IE6 7 on xp.  FF is really smooth. I'm running into what I think might be a similar problem. In my scenario, I am showing search results. I

[jQuery] Re: firefox 3 RC1 : tremendous slow down

2008-06-20 Thread Jiming
I'm using release version, still very slow On Jun 20, 3:12 pm, hagalaz [EMAIL PROTECTED] wrote: I'm experiencing the same issue. It's definitely something that should be pointed out to FF developers. The javascript in the beta version was supposed to be 3 times as fast as in FF2.

[jQuery] Re: Validation is not working as expected. Input value deleted!

2008-06-20 Thread Alexsandro_xpt
Hi shapper, do you speak portugues? Please contact me for Validate chat through by e-mail. Thz. On 20 jun, 07:53, shapper [EMAIL PROTECTED] wrote: Hello, I am trying to validate and mask a text box that should contain a DateTime in the following format: -mm-dd hh:mm:ss The

[jQuery] Re: JQuery variables

2008-06-20 Thread Isaak Malik
The use of jQuery's $(#createNewAccount). is cross-browser so you shouldn't worry about IE. On Fri, Jun 20, 2008 at 11:42 AM, Neilz [EMAIL PROTECTED] wrote: Thanks for this response. Unfortunately, I am left with the problem that Internet Explorer doesn't seem to like the syntax

[jQuery] Re: jQuery.sheet thoughts, maybe UI compliant?

2008-06-20 Thread K-BL
Bump On Jun 16, 12:29 pm, K-BL [EMAIL PROTECTED] wrote: Hey Guys, A lot has happened since I first posted about jQuery.sheet- A jQuery Spreadsheet with Calculations v0.1. We're now at version 2.5. Version 2.5 adds ajax load/save, in-place navigation, in-place edit, cross browser

[jQuery] Highlight Table Row with Animate

2008-06-20 Thread briandichiara
At the end of my Ajax request, I'd like to highlight a table row, so to speak. Why doesn't this work: id = 5 success: function(e){ $(#address+id).css(background-color,#F9FFCF); $(#address+id).animate({backgroundColor:'#FFF'}, 800); } The first line will work, but the 2nd line

[jQuery] Re: Sorting Divs by Span Value

2008-06-20 Thread Seth - TA
TinySort 0.2.0 was just released with the IE for each fix. http://plugins.jquery.com/node/2986 On Jun 18, 3:28 pm, Seth - TA [EMAIL PROTECTED] wrote: @Kevin I got that same error as well. I made a comment on the plugins page to the author. Hopefully I will get an answer, I like the plugin.

[jQuery] Re: New jQuery Plug-in: Multicolumn Dropdown

2008-06-20 Thread Stan Lemon
Dan, Key navigation doesn't work at all - I'm not able to key down or anything. I wonder if the hotkeys plugin for jQuery might be helpful in this front since it normalizes key entry behavior? Just a thought. Thanks again for the stellar plugin. Pax, - Stan On Jun 19, 4:05 pm, Dan G.

[jQuery] OT: any idea how to know what firefox is currently loading ?

2008-06-20 Thread Alexandre Plennevaux
hi mates, in one of my application interfaces, the page is fully rendered but the browser loading icon (top-right of firefox ) keeps on turning and the status bar also says so. I'm working on my local test server (localhost) and checked both the source code and generated source code: all loaded

[jQuery] Re: OT: any idea how to know what firefox is currently loading ?

2008-06-20 Thread Michael Geary
Either Firefox with its Net tab enabled, or Fiddler2 if you have a Windows machine. Fiddler2 is an outstanding debugging tool; it's the killer app for a Windows VM if you use Mac or Linux. -Mike _ From: Alexandre Plennevaux hi mates, in one of my application interfaces, the page is

[jQuery] Proper Memory Cleanup?

2008-06-20 Thread Scott
Can someone point me to or give me some advice in what the best coding practices would be for cleaning up after myself while using jquery? Specifically I'm thinking about using the ajax functions like load(), if my loaded page has tabs or something like that in it and I remove that loaded section

[jQuery] kudos to Mike Malsup for his cycle plugin

2008-06-20 Thread [EMAIL PROTECTED]
Just wanted to send a word of thanks for Mike Malsup for his cycle plugin. I just completed a project with a same-day deadline, and it would have been a static, boring page without the cycle plugin. One line of javascript, and I had a beautiful fading slideshow. Here it is:

[jQuery] Resizing two divs proportionally

2008-06-20 Thread hubbs
I would like to know how I could resize two divs proportionally to each other. I have the resize UI plugin working to resize the top div, but I would like the bottom div to resize as well, depending on the resizing of the top div. (Similar to how many mail programs manage the list of mail, and

[jQuery] Finding all inputs with name X?

2008-06-20 Thread fambi
How can we find all inputs with name X? Thanks

[jQuery] bugs

2008-06-20 Thread Luke
I new to jquery. my first srcipt is a tab browsing galley for images. this script works fine expect for certain mysterious bug: in firefox sometimes, very rarely, image resize doesn't get executed on first load. upon refresh it works. in safari it loads fine first time but upon refresh image

[jQuery] Re: Finding all inputs with name X?

2008-06-20 Thread Giovanni Battista Lenoci
fambi ha scritto: How can we find all inputs with name X? Thanks Hi, take a look here : http://docs.jquery.com/Selectors $(':input[name=X]'); Bye -- gianiaz.net - web solutions p.le bertacchi 66, 23100 sondrio (so) - italy +39 347 7196482

[jQuery] [validate] Validate based on other fields but not being required

2008-06-20 Thread Chandler
[validate] Validate based on other fields Hi all, I'm just getting to grips with this Validation plug-in but would like to check whether something is possible. I would like to run validation on a field based on values from other parts of the form. I realise that this is possible with the

[jQuery] tablesorter and parsers not defined error

2008-06-20 Thread Ken
Hopefully I am just overlooking something. I am attempting to use the tablesorter plugin, and can't get past a parsers error. I am running FireFox 3. I want to use the default values, and have then commented out trying to debug the error. If I put the tablesorter() call at the end, then my

[jQuery] Re: Finding all inputs with name X?

2008-06-20 Thread fambi
Sorry, please ignore this. I was looking in the wrong places... i found the answer. On Jun 20, 8:56 pm, fambi [EMAIL PROTECTED] wrote: How can we find all inputs with name X? Thanks

[jQuery] [validate] Validate based on other fields but not being required

2008-06-20 Thread Chandler
Hi all, I'm just getting to grips with this Validation plug-in but would like to check whether something is possible. I would like to run validation on a field based on values from other parts of the form. I realise that this is possible with the required field, i.e. required:

[jQuery] Re: bugs

2008-06-20 Thread MorningZ
Might want to put all that in the same $(document).ready() block so the code all runs in the order you want it..

[jQuery] Google Code Download not working - Any Mirrors?

2008-06-20 Thread Brad
I'm trying to download the latest jQuery from the links on the jQuery home page. My browser gets to Google Code, but all listed downloads are failing w Firefox can't establish a connection to the server at jqueryjs.googlecode.com. I've been trying for a while now with no luck. Are there any

[jQuery] Re: OT: any idea how to know what firefox is currently loading ?

2008-06-20 Thread Richard D. Worth
On Fri, Jun 20, 2008 at 12:06 PM, Michael Geary [EMAIL PROTECTED] wrote: Either Firefox with its Net tab enabled I assume you mean Firebug? - Richard

[jQuery] Re: Resizing two divs proportionally

2008-06-20 Thread Richard D. Worth
Please ask on the jQuery UI mailing list: http://groups.google.com/group/jquery-ui Thanks. - Richard On Fri, Jun 20, 2008 at 1:00 PM, hubbs [EMAIL PROTECTED] wrote: I would like to know how I could resize two divs proportionally to each other. I have the resize UI plugin working to resize

[jQuery] Re: OT: any idea how to know what firefox is currently loading ?

2008-06-20 Thread Alexandre Plennevaux
hi mike, can you tell me more about the Firefox Net Tab ? didn't find much on google... Thanks again! Alexandre On Fri, Jun 20, 2008 at 6:06 PM, Michael Geary [EMAIL PROTECTED] wrote: Either Firefox with its Net tab enabled, or Fiddler2 if you have a Windows machine. Fiddler2 is an

[jQuery] Re: Google Code Download not working - Any Mirrors?

2008-06-20 Thread Rey Bango
Brad, I just tried it and it worked fine for me: http://code.google.com/p/jqueryjs/ Rey... Brad wrote: I'm trying to download the latest jQuery from the links on the jQuery home page. My browser gets to Google Code, but all listed downloads are failing w Firefox can't establish a

[jQuery] Re: Highlight Table Row with Animate

2008-06-20 Thread Richard D. Worth
Color animations are not in core jQuery but are in jQuery UI Effects. If color animations is all you want (from UI Effects), you just need one file: effects.core.js, which you can get from the UI download build page: http://ui.jquery.com/download_builder/ (select Effects Core) or directly here:

[jQuery] Re: Google Code Download not working - Any Mirrors?

2008-06-20 Thread Brad
Rey, I can get to that URL, but if I try to download the actual libraries in any form Firefox (and IE and Safari) give me Unable to Connect (or similar) errors. I just checked and I'm still seeing failures. Note that the download links on http://code.google.com/p/jqueryjs/ point to

[jQuery] Re: Google Code Download not working - Any Mirrors?

2008-06-20 Thread Rey Bango
Hi Brad, Seems like it may be something on your end as I was able to download it. It the full file that I sent you via private email. Rey... Brad wrote: Rey, I can get to that URL, but if I try to download the actual libraries in any form Firefox (and IE and Safari) give me Unable to

[jQuery] Re: Checkboxes, difference in browsers

2008-06-20 Thread jggube
Try something like instead: if( $(input[name='createNewAccount']).is(:checked) ) { //do stuff } On Jun 19, 11:07 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello. I have this JQuery code which works absolutely fine in Firefox: if ($(#createNewAccount).is(:checked)){      //

[jQuery] Re: Google Code Download not working - Any Mirrors?

2008-06-20 Thread Brad
Yes, on further investigation, it appears to be a DNS issue. Brad On Jun 20, 1:21 pm, Rey Bango [EMAIL PROTECTED] wrote: Hi Brad, Seems like it may be something on your end as I was able to download it.

[jQuery] Re: [validate] Validate based on other fields but not being required

2008-06-20 Thread Jörn Zaefferer
Give this a try: maxlength: { depends: function(element) { return jQuery(#textarea1).val == 'buga' jQuery(#textarea2).val != 'booga' } } Jörn On Fri, Jun 20, 2008 at 7:20 PM, Chandler [EMAIL PROTECTED] wrote: Hi all, I'm just getting to grips with this Validation plug-in but would like

[jQuery] Re: [validate] Validation is not working as expected. Input value deleted!

2008-06-20 Thread shapper
You mean using the following: $.validator.addMethod('sqldatetime', function (value, element) { return this.optional(element) || /^(([0-9]{4})-([0-1][0-9])-([0-3] [0-9])\s([0-1][0-9]|[2][0-3]):([0-5][0-9]):([0-5][0-9])|) $/.test(value); }, 'Verifique a data e hora. Use o formato -mm-dd

[jQuery] Re: OT: any idea how to know what firefox is currently loading ?

2008-06-20 Thread MorningZ
tell me more about the Firefox Net Tab See http://www.getfirebug.com

[jQuery] Re: Checkboxes, difference in browsers

2008-06-20 Thread Ariel Flesler
Your code should work. You didn't close the input tag correctly but that shouldn't matter. Do you have a demo online ? -- Ariel Flesler http://flesler.blogspot.com On 19 jun, 12:07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello. I have this JQuery code which works absolutely fine in

[jQuery] Re: select all divs with the same name

2008-06-20 Thread jggube
He meant id. In his example he used #mydelete. To select everything with class=test in mootools, you would do $$(.test). On Jun 20, 10:18 am, Ariel Flesler [EMAIL PROTECTED] wrote: If you really meant 'name' then: $('div[name=foo]') -- Ariel Fleslerhttp://flesler.blogspot.com On 20 jun,

[jQuery] Re: OT: any idea how to know what firefox is currently loading ?

2008-06-20 Thread Michael Geary
Right, Firebug! D'oh! Thanks for catching that. :-) -Mike _ From: Richard D. Worth On Fri, Jun 20, 2008 at 12:06 PM, Michael Geary [EMAIL PROTECTED] wrote: Either Firefox with its Net tab enabled I assume you mean Firebug? - Richard

[jQuery] Re: OT: any idea how to know what firefox is currently loading ?

2008-06-20 Thread Michael Geary
Ah, sorry about the typo! Yes, Firebug. :-) www.getfirebug.com seems to have only the old version of Firebug listed. For Firefox 3, you need the new version: https://addons.mozilla.org/en-US/firefox/addon/1843 -Mike From: MorningZ tell me more about the Firefox Net Tab See

[jQuery] Re: select all divs with the same name

2008-06-20 Thread andrea varnier
On 20 Giu, 22:16, jggube [EMAIL PROTECTED] wrote: He meant id. In his example he used #mydelete. To select everything with class=test in mootools, you would do $$(.test). so let's say that jQuery is cheaper, cause it uses less dollars :)

[jQuery] Re: bugs

2008-06-20 Thread Michael Geary
Might want to put all that in the same $(document).ready() block so the code all runs in the order you want it.. If multiple ready() calls are in the order you want them, then it doesn't matter if they are separate calls or all in one. The callback functions are called in the same order

[jQuery] Re: bugs

2008-06-20 Thread Wizzud
I think you will find that you need to use what is commonly referred to as a 'preloader'. Take a look at Ariel's Preload plugin (Link mode, with onComplete) On Jun 20, 5:55 pm, Luke [EMAIL PROTECTED] wrote: I new to jquery. my first srcipt is a tab browsing galley for images. this script works

[jQuery] Re: Debugging $.getScript scripts

2008-06-20 Thread ajpiano
So literally no one has ever wanted to debug a remote script without pulling their application apart to do so? --adam On Jun 18, 1:32 pm, ajpiano [EMAIL PROTECTED] wrote: Anyone have a clever method for doing step-debuggingon scripts fetched via $.getScript() ?  In firebug, if you add a

[jQuery] Mediawiki slidetoggle() flat DOM

2008-06-20 Thread Andi
Hello everybody... I searched this group, but no solution for me in the first view... ;( So... what I need is a way to organize large mediawiki-pages with the possibility to show/hide section-contents. The pages are organized in an absolut flat structure something like h1../h1 sections are

[jQuery] Re: [validate] success, failure?

2008-06-20 Thread Dorian
Thanks for that. I can't found it. On Jun 19, 5:07 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: You can use the showErrors-option for complete control over showing errors. All options, including success and errorPlacement, are documented

[jQuery] Re: Validation is not working as expected. Input value deleted!

2008-06-20 Thread Brian J. Fink
@Miguel: It appears you have the RegExp value and the value switched. Maybe you meant: $.validator.addMethod('sqldatetime', function (value) { return value.test(/^(([0-9]{4})-([0-1][0-9])-([0-3][0-9])\s([0-1] [0-9]|[2] [0-3]):([0-5][0-9]):([0-5][0-9])|)$/); }, 'Verifique a data e hora. Use o

[jQuery] Dynamic checkbox not included in submit by jquery.form

2008-06-20 Thread Michael Nelson
Hello, I have a form with a drop down list which populates a div with checkboxes based on an AJAX query each time it changes. I'm then using ajaxSubmit to post that data along with a few additional form elements. All of the elements are included in the post *except for the checkboxes*. HTML and

[jQuery] Re: tablesorter and parsers not defined error

2008-06-20 Thread Ken
The error seems to be caused from this line. $.tablesorter.defaults.sortList = [[4,0]]; I also put the headers line in the call, so my script look like: $(document).ready(function() { // extend the default setting to always include the zebra widget. $.tablesorter.defaults.widgets =

[jQuery] Re: Is there a way to use the css function with $(document) directly?

2008-06-20 Thread Brian J. Fink
Perhaps you forgot to use jquery.extend() to create your rule plugin, or maybe you should figure out a way to return jquery(jquery.rule) value instead. When I said unchainable, I meant that methods of the rule object break the chain for successive rule() calls, forcing the coder to insert ;$ to

[jQuery] Re: bugs

2008-06-20 Thread Luke
Thanks, but no luck. still messed up in Safari after page refresh. l. // create gallery images $(document).ready(function(){ var max_width = 310; var max_height = 310; var selector = 'img.medium'; $(selector).each(function() { var

[jQuery] Re: bugs

2008-06-20 Thread Luke
thanks MorningZ, but no luck here. on refresh safari ignores positioning and messes up image resizing. l. // create gallery images $(document).ready(function(){ var max_width = 310; var max_height = 310; var selector = 'img.medium';

[jQuery] Re: Checkboxes, difference in browsers

2008-06-20 Thread Wizzud
Is the id createNewAccount unique within the page? On Jun 20, 9:02 pm, Ariel Flesler [EMAIL PROTECTED] wrote: Your code should work. You didn't close the input tag correctly but that shouldn't matter. Do you have a demo online ? -- Ariel Fleslerhttp://flesler.blogspot.com On 19 jun,

[jQuery] Re: How do i display a tooltip from a hidden div?

2008-06-20 Thread Mark
please... On Thu, Jun 19, 2008 at 10:42 PM, Mark [EMAIL PROTECTED] wrote: Hey, I've spend the last few hours very trying to find a tooltip plugin that can just show a hidden div when i move my mouse over a link. I've looked at clueTip and that has nearly what i need. The clueTip sticky

[jQuery] Re: Validation is not working as expected. Input value deleted!

2008-06-20 Thread shapper
Very strange ... it works both ways ... well, what I mean is that I keep having the same problem in both cases. Any more ideas? Did anyone notice that the Validation Examples Forms that have Masking don't work in Firefox 3? Thanks, Miguel On Jun 20, 7:46 pm, Brian J. Fink [EMAIL PROTECTED]

[jQuery] superfish v1.3.1 question

2008-06-20 Thread cromeis
Hi Joel, I was hoping you could explain a couple of lines of code to me that you use in superfish v1.3.1. We have found that if we comment out these two lines that it makes things a lot faster. However, we think we have an idea of what these lines do, but aren't sure what the ramifications

[jQuery] jQuery Camp 2008 to be held at The Ajax Experience on Sept. 28th.

2008-06-20 Thread Rey Bango
The jQuery Team is pleased to announce the second annual jQuery Camp! jQuery Camp 2008 will be held on Sunday, Sept. 28, the day before The Ajax Experience, in Boston, MA (location TBA). Last year, over 100 jQuery developers gathered for a full day of jQuery sessions, which included talks

[jQuery] Re: superfish v1.3.1 question

2008-06-20 Thread Joel Birch
Hi Carleigh, Thanks for the kind words - I do remember our previous correspondence. Your site is fantastic. Amazing how many links you have managed to show on the home page. I haven't seen that type of multi-column menu using Superfish before, but I have been wanting to see if it could be done.