[jQuery] Re: validation plugin: validate checkboxes that don't have same name?

2009-02-06 Thread jQuery Lover
You can add custom rule with your custom validator. Read documentation here: http://docs.jquery.com/Plugins/Validation Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 7:22 AM, claudes claudina.sar...@gmail.com wrote: using validation plugin, is

[jQuery] Re: load() not loading my dynamic page

2009-02-06 Thread jQuery Lover
.html is static and the other one is generated dynamically... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Thu, Feb 5, 2009 at 10:21 PM, photogeek levin@gmail.com wrote: Beginner question but what is the difference between that .html page and the page that

[jQuery] Re: dynamically building the for attribute

2009-02-06 Thread jQuery Lover
Ups, I missed the id's of checkboxes... My code was written for checkboxes and label's both without id's... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Thu, Feb 5, 2009 at 7:52 PM, Mauricio (Maujor) Samy Silva css.mau...@gmail.com wrote: $('#my-form

[jQuery] Re: Select element based on a value of its child element

2009-02-06 Thread jQuery Lover
Most likely... you should submit a ticket: http://dev.jquery.com/ Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Feb 4, 2009 at 9:24 PM, Stephan Veigl stephan.ve...@gmail.com wrote: Good point. I've just tested input[value=''] and got an error in jQuery.js.

[jQuery] Re: Accessing object tag by id

2009-02-06 Thread Olaf Gleba
Sorry, but anyone has a clue ? Am 05.02.2009 um 11:43 schrieb Olaf Gleba: Couldn't find any appropriate answer: How do i point to a object tag by ID ? Example: object id=flashsitemap data=xxxn.swf param name=wmode value=transparent/ /object $('#flashsitemap').event(function() { ... });

[jQuery] Re: Need to make a edit layout system using php and jquery...?

2009-02-06 Thread jQuery Lover
Yeap. I suggest you add a save button so you make an ajax call only once (when user decides to save his/her settings) and don't kill your server ... :) Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 5:01 AM, shyhockey...@gmail.com

[jQuery] Re: Accessing object tag by id

2009-02-06 Thread jQuery Lover
You might wanna use this: http://jquery.thewikies.com/swfobject/ Or look into the code. May find clues there... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 1:11 PM, Olaf Gleba l...@creatics.de wrote: Sorry, but anyone has a clue ? Am

[jQuery] Re: ui draggable (option drag doesn't work)

2009-02-06 Thread jQuery Lover
I don't see a drag option in draggables documentation... or am i missing anything here ??? Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 10:19 AM, Richard D. Worth rdwo...@gmail.com wrote: Which version of jQuery UI are you using? jQuery UI

[jQuery] Re: Superfish Help

2009-02-06 Thread jQuery Lover
Create a dummy user for us so we could see it in action... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 9:16 AM, Aaron Gundel aaron.gun...@gmail.com wrote: if you're logged in? On Thu, Feb 5, 2009 at 5:32 PM, Josh

[jQuery] Re: Optimize large DOM inserts

2009-02-06 Thread jQuery Lover
That is true I always suggest using built in for() loop with huge data sets... and people keep ignoring me :))) Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 8:25 AM, Michael Geary m...@mg.to wrote: ...there is not much room for improvement

[jQuery] Re: Superfish

2009-02-06 Thread jQuery Lover
Yeap, there are multiple ul in the sub menu and the rest of trick is done with CSS. ul#topnav .menu ul.sub_nav { margin:0 10px 0 0; padding:0; width:130px; } Giving each sub navigation ul a fixed width and floating it to the left. Read jQuery HowTo Resource -

[jQuery] Re: ui draggable (option drag doesn't work)

2009-02-06 Thread knight
Richard you are right. I've missed this thing placing new version of jQuery. Thanks.

[jQuery] Re: Plugin Question

2009-02-06 Thread Jörn Zaefferer
Found it: When you specify rules in the validate-call, the name is referenced, not the id. Replacing select with field_3 (or renaming the latter) should fix it. Jörn On Fri, Feb 6, 2009 at 12:20 AM, Chris cpot...@siolon.com wrote: On Feb 5, 6:17 pm, Jörn Zaefferer

[jQuery] Re: Checkbox selection

2009-02-06 Thread jQuery Lover
Something like this might help: $('table tr').click(function(e){ if( $(e.target).is('td') ){ $('input:checkbox', this).attr('checked', 'checked'); } }); Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 7:40 AM, Sam Hastings sam.hasti...@gmail.com

[jQuery] Re: Select element based on a value of its child element

2009-02-06 Thread Stephan Veigl
Hi, according to another thread in this group (http://groups.google.at/group/jquery-en/browse_thread/thread/2115a6c8c2069cd8) there is already a ticket for this bug: http://dev.jquery.com/ticket/3990 and it's already fixed in the trunk by(e) Stephan 2009/2/6 jQuery Lover

[jQuery] Re: jQuery 1.3.x XPath

2009-02-06 Thread Neil Craig
Mmmm, haven't tried that. Thanks! On Jan 29, 8:33 am, Klaus Hartl klaus.ha...@googlemail.com wrote: On 29 Jan., 06:05, Neil Craig neil.big.cr...@gmail.com wrote: I have tried it, but it yields no results when searching for elements. What I loved about the xpath functionality was that I

[jQuery] Re: Recommendation Required - Custom Classes Library

2009-02-06 Thread Neil Craig
Note, that this applies to Mootools 1.11. I haven't touched version 1.2+, I'm sure they differ a lot. On Jan 23, 2:30 pm, Balazs Endresz balazs.endr...@gmail.com wrote: Then what if you just use Class.Extras and all its dependencies as it is? Now that sounds too easy :) On Jan 23, 9:21 am,

[jQuery] Re: Accessing object tag by id

2009-02-06 Thread Olaf Gleba
Thanks. I already use swfobject. Still a good idea to look into the lib to (maybe) find something there... greets Olaf Am 06.02.2009 um 09:18 schrieb jQuery Lover: You might wanna use this: http://jquery.thewikies.com/swfobject/ Or look into the code. May find clues there... Read

[jQuery] Re: Optimize large DOM inserts

2009-02-06 Thread Stephan Veigl
Hi, thanks fort his little optimization tutorial :-) One question, is there a difference between a loop with a running variable (e.g. for (i=0; irows.length; i++) ) and a for-in loop (e.g. for (var i in rows) )? I've done some tests and couldn't find any performance difference beside the

[jQuery] Re: Optimize large DOM inserts

2009-02-06 Thread Gordon
.each isn't the best choice in this case, a good old-fashioned for loop will be significantly faster. Also, use an array of strings instead of a single one and string concatenation. Using array.push () is faster than using the += operator on a string. Once the loop finishes use join () to get

[jQuery] What is difference between ADO and RDO

2009-02-06 Thread Agile Consulting
Explain ADO and RDO

[jQuery] Re: Optimize large DOM inserts

2009-02-06 Thread Javier Martinez
And what about? for (var i = 0, j = data.length, arr = new Array(j); i j; i++) arr[i] = 'trtddata from json/td/tr'; $('tbody').append (myArray.join ('')); 2009/2/6 Gordon grj.mc...@googlemail.com .each isn't the best choice in this case, a good old-fashioned for loop will be

[jQuery] Re: rules section problem

2009-02-06 Thread TUNGA
Hello, removing rules from validate() and adding the line below outside of validate function fixed the issue: var validator = $(#myForm).validate(); validator.settings.rules = { rules... }; Mesut TUNGA On 31 Ocak, 13:27, TUNGA mesut.tu...@gmail.com wrote: P.S. :http://nrzv.com/valid/?s=2

[jQuery] Re: General Question RE: Using jQuery with Wordpress

2009-02-06 Thread MH1988
Many thanks for your response. Here is the page I have tried to attempt making the jQuery Cycle plugin work correctly: a href=http:// www.culturesinbetween.net/NEWWEBSITE/archives/299website/a 1. The first thing I did was add the scripts in my Wordpress theme's header.php: ?php

[jQuery] Re: General Question RE: Using jQuery with Wordpress

2009-02-06 Thread MH1988
I honestly cannot believe but I've made it work. This has been troubling so much and it's finally worked. What I don't understand is why it did not work in the first place. I also think one important reason I just discovered that you had to load all your CSS files before the jQuery script/s.

[jQuery] Re: JQuery effects not working in Internet Explorer 6

2009-02-06 Thread Henry
On Feb 6, 10:30 am, Tintin81 wrote: I am new to Javascript and implemented a few nice JQuery features on a href=http://new.designbits.de;my new website/a . All of them work great in Firefox and Safari. In IE6, however, the site looks like a mess, even with Javascript enabled in the options

[jQuery] how to wait for image finished loading then display the page?

2009-02-06 Thread Plant More Tree
Hi guys, My website is www.menggaris.com and if you go there 1st time, you will find that it takes sometimes to load as the first page consist of several images of a total of about 260kb in size. My index.html is like follow:

[jQuery] 1.3, live events, and iphone

2009-02-06 Thread yad...@gmail.com
hi all, I am having problems getting live events with jquery 1.3.1 to work on the phone ... it works ok on safari (windows), but not on the device itself. I would appreciate any tips, help, info ... thanks ! Roger

[jQuery] Re: Plugin Question

2009-02-06 Thread Chris
On Feb 6, 3:46 am, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: Found it: When you specify rules in the validate-call, the name is referenced, not the id. Replacing select with field_3 (or renaming the latter) should fix it. Jörn Perfect! Thanks.

[jQuery] Re: ui draggable (option drag doesn't work)

2009-02-06 Thread Richard D. Worth
It's a callback option, which are currently listed at the bottom of the list of options (not intermingled otherwise in alpha order with the regular options). We're working on showing them on their own tab. - Richard On Fri, Feb 6, 2009 at 3:21 AM, jQuery Lover ilovejqu...@gmail.com wrote: I

[jQuery] jQuery offsetParent - using with drag/drop UI problem in IE7

2009-02-06 Thread tom gee
hi all, this problem is driving me nuts! i hope to be able to provide as much info as possible to help resolve it!! the site is working fine with the drag n drop, but at some points the drag feature breaks reporting an error with line number 3370 (or there abouts as i have added a couple of

[jQuery] Re: General Question RE: Using jQuery with Wordpress

2009-02-06 Thread jQuery Lover
There is still a js error in your onAfter() function. You have jQuery.noConflict(); set and using $('.imgcap'). My 2 cents. Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 4:09 PM, MH1988 m.lawrencehu...@gmail.com wrote: I honestly cannot

[jQuery] Re: 1.3, live events, and iphone

2009-02-06 Thread jQuery Lover
What device are you using, and what browser ? Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 4:14 PM, yad...@gmail.com yad...@gmail.com wrote: hi all, I am having problems getting live events with jquery 1.3.1 to work on the phone ... it

[jQuery] Re: jQuery offsetParent - using with drag/drop UI problem in IE7

2009-02-06 Thread Richard D. Worth
In the future, please post questions about jQuery UI bugs to the jQuery UI Dev list: http://groups.google.com/group/jquery-ui-dev The list you've posted to is for general help with jQuery. Also, if you could open a ticket in the jQuery UI bug tracker: http://dev.jqueryui.com/newticket (note:

[jQuery] Re: What is the best option to make this modal???

2009-02-06 Thread Stephan Veigl
Hi André, have you tried the jQuery UI Dialog widget? by(e) Stephan 2009/2/6 AndreMiranda acymira...@gmail.com: Hi everyone!! Can you guys tell me the best way to do this? I have a page which lists several tasks of a person. And when you roll over one task, a popup/modal/tip will appear

[jQuery] Modify and accordian to only open and close when clicked

2009-02-06 Thread Solaz
Hi Guys, I need some advice, I've been using and accordian as per an example I found somewhere: script $(document).ready(function(){ $(dd:not(:first)).hide(); $(dt a).click(function(){

[jQuery] Re: jQuery 1.3 incompatible plugins

2009-02-06 Thread Daniel
Hi, quick fix for compatibility with jQuery 1.3 1. Open jquery.fancybox.js file 2. Replace line 73: Before: var arr = $(a...@rel= + el.rel + ]).get(); After: var arr = $(a[rel= + el.rel + ]).get(); Bye. On 22 Led, 16:13, Gordon grj.mc...@googlemail.com wrote: Sorry for the double posting!

[jQuery] Re: how to wait for image finished loading then display the page?

2009-02-06 Thread gregory.pelletey
Hello What about this? div id=skip style=display:none;margin:50px 0;font-size:36px spanabout.php Get me out of here !/span /div // .. //your code... // .. $(document).ready(function(){ $('#skip').find('span').hide().end().show('slow').end().find ('span').show('slow'); });

[jQuery] How to enable jquery in a loaded page?

2009-02-06 Thread 123gotoandplay
Hi there, I am having a problem to enable jquey in a loaded page. For example: base.php has jquery and i load showContent.php like: $(document).ready(function() { $(#show).click(function() { $(#content).css(overflow-y, scroll);

[jQuery] Re: What is the best option to make this modal???

2009-02-06 Thread AndreMiranda
Hi Stephan!! But, can jQuery Dialog interact dynamically like I need in my project?? Thanks!! André On 6 fev, 11:28, Stephan Veigl stephan.ve...@gmail.com wrote: Hi André, have you tried the jQuery UI Dialog widget? by(e) Stephan 2009/2/6 AndreMiranda acymira...@gmail.com: Hi

[jQuery] Re: how to wait for image finished loading then display the page?

2009-02-06 Thread Stephan Veigl
Hi Mark, I would suggest that you wait on the load event of your images. Something like: var imgTotal = 10; // total number of images on your page var imgCount = 0; $(img).load(function(){ imCount++; if (imgCount == imgTotal) $(#skip).show(); } There are plenty of discussions about

[jQuery] Re: jQuery offsetParent - using with drag/drop UI problem in IE7

2009-02-06 Thread tom gee
hi, apologies the reason i didn't post in the UI group was because it was a method of jQuery itself, so I wasn't too sure which group to put it in to be honest! the thing is im unsure if its a problem with jQuery, I was just hoping someone might be able to see if there was a problem with the

[jQuery] Re: How to enable jquery in a loaded page?

2009-02-06 Thread ilovejquery
It's probably because your jquery code is in $(document).ready() function and it is never fired when you load with .load(). Put your code in callback function like this: $(document).ready(function() { $(#show).click(function() { $(#content).css(overflow-y, scroll);

[jQuery] Re: What is the best option to make this modal???

2009-02-06 Thread jQuery Lover
There are dependencies with jQuery UI dialog. You better use one of the other lightweight and simple modal boxes without all unnecessary functionality... http://www.google.com/search?q=jquery+modal+plugin Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6,

[jQuery] Re: Internet Explorer not firing ajax get on success of ajax post

2009-02-06 Thread Mario Soto
Add an error part and see what's going on... (just rigth after succss, comma separated) error: function(object,text,error){ alert(object.status); } On Feb 5, 2:37 pm, georgelaugha...@gmail.com georgelaugha...@gmail.com wrote: I have a web application

[jQuery] Re: Optimize large DOM inserts

2009-02-06 Thread Rick Faircloth
Hi, Mike, et al... I'm having the same problem loading the DOM with a lot of generated HTML and I'm very interested in your approach to generating the code. I looked over the example you have at ...loop2.html and have tried to modify it, but I'm afraid there's too much I don't understand. My

[jQuery] slideToggle(); odd and even click

2009-02-06 Thread bart
I have a navigation which consists of a few ul's placed within one and the same parent; a div. All but the first list item of these unordered lists get hidden and the first acts as a trigger to either show or hide the underlying li's. All this happens with a little animation by making use of

[jQuery] Re: [validator] custom rule with additional params

2009-02-06 Thread yongbin
it works . I doubted similar reason too but I couldn't catch because of another silly quoting mistake. after read your reply I found my mistake. thank you for your help yongbin On Feb 5, 5:47 pm, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: Looks like you didn't pass along proper

[jQuery] Re: Optimize large DOM inserts

2009-02-06 Thread Ricardo Tomasi
Hi Michael, Ouch. That's quite a difference. I thought about the join vs concatenate performance difference in IE, but didn't remember it could be that large. I take that one, I was being displiscent. cheers, - ricardo On Feb 6, 1:25 am, Michael Geary m...@mg.to wrote: ...there is not much

[jQuery] Re: 1.3, live events, and iphone

2009-02-06 Thread jQuery Lover
Opsy, my bad. Did not see the title that says iPhone... I suggest using event delegation: www.learningjquery.com/2008/03/working-with-events-part-1 Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 5:45 PM, jQuery Lover ilovejqu...@gmail.com wrote:

[jQuery] [FIX] metadata fix proposed

2009-02-06 Thread maxbnet
Firefox 3.1b2 returns classname with \n. All other browsers don't. In metadata plugin the default regexp is /({.*})/ I fixed this problem with this regexp /({[\s\S]*})/ so defaults : { type: 'class', name: 'metadata',

[jQuery] Re: Checkbox selection

2009-02-06 Thread Sam Hastings
Thanks! I'll give your suggestions a shot :-)

[jQuery] Re: Ajax callback parameter endless

2009-02-06 Thread Kpitn
a call like this : confirm('message ?',function(){showAnswer ('1','2','3');}) the function showAnswer is execute 1 time. If i make another call : confirm('message ?',function(){showAnswer ('1','2','3');}) the function showAnswer is execute 2 times. I don't want (n+1) answer after call

[jQuery] Re: $.data

2009-02-06 Thread Ian Lewis
The jQuery docs weren't good enough? http://docs.jquery.com/Internals/jQuery.data You should probably be using the data() function from core though. http://docs.jquery.com/Core/data Ian On Fri, Feb 6, 2009 at 4:51 PM, Chris J. Lee chri...@gmail.com wrote: I haven't been able to find good

[jQuery] [treeview]

2009-02-06 Thread heohni
Hi, how can I achieve to have the fisrt 2 levels of my menu always open on page load? Thanks Heidi

[jQuery] What is the best option to make this modal???

2009-02-06 Thread AndreMiranda
Hi everyone!! Can you guys tell me the best way to do this? I have a page which lists several tasks of a person. And when you roll over one task, a popup/modal/tip will appear and dynamically will get all information about this task. What are the best plugins to make this? The best way...

[jQuery] Ajax callback parameter endless

2009-02-06 Thread Kpitn
Hi I have override the confirm function like this : function confirm(msg,callback_true,callback_false) { if yes{ callback_true(); } else{ callback_false(); } } In my application i use the function like this : confirm('message',function(){ alert(ok)}, function (){ alert('not ok')}); I must ask

[jQuery] Re: How to enable jquery in a loaded page?

2009-02-06 Thread Grégory Pelletey
Hi 123, I believe that in showContent.php, your jQuery must relates to the DOM of your base.php. So you should change your jQuery in showContent so that the markups call like $(#someDiv) works in the base.php flow. 123gotoandplay a écrit : Hi there, I am having a problem to enable jquey

[jQuery] Re: $.browser and jQuery 1.3

2009-02-06 Thread wick
Just adding my $0.02 about why browser sniffing should be discouraged but never completely deprecated - I use browser sniffing to redefine the fadeIn/fadeOut effects to slideDown/slideUp for IE7, because of the ClearType issue. It's a case where the effect _works_, so I can't use feature

[jQuery] Re: [Superfish] Submenus appear underneath menu items when the menu wraps

2009-02-06 Thread Michael Smith
Didn't find a fix - I tried bgiframe but couldn't get it to work. I'll go back to regular menus for the time being. Thanks On Wed, Feb 4, 2009 at 1:58 PM, jQuery Lover ilovejqu...@gmail.com wrote: This is how IE interprets z-index settings for positioned elements. Google it and you will

[jQuery] Re: rules section problem

2009-02-06 Thread TUNGA
Hello, removing rules from validate() and adding the line below outside of validate function fixed the issue: validator.settings.rules = { rules... }; Mesut TUNGA On 31 Ocak, 13:27, TUNGA mesut.tu...@gmail.com wrote: P.S. :http://nrzv.com/valid/?s=2 loads $(#myApplDiv).load(2.php); into

[jQuery] JQuery effects not working in Internet Explorer 6

2009-02-06 Thread Tintin81
Hey, I am new to Javascript and implemented a few nice JQuery features on a href=http://new.designbits.de;my new website/a . All of them work great in Firefox and Safari. In IE6, however, the site looks like a mess, even with Javascript enabled in the options panel. How can I get this fixed?

[jQuery] Re: Ajax callback parameter endless

2009-02-06 Thread ilovejquery
Didn't get exactly what you want, but I think you might find useful the fact that you have arguments array in body of every function() that has an array of arguments. Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Fri, Feb 6, 2009 at 7:12 PM, Kpitn

[jQuery] submit a submit value through ajax

2009-02-06 Thread Trend-King
Hello i have a form with 2 input class=plus type=submit value=0 name=plus/ input class=minus type=submit value=0 name=minus/ buttons in it and i want to receive these values through my ajax calls $('#cart_quantity').submit(function(){ var serialized_values = $('#cart_quantity').serialize()

[jQuery] Re: JQuery effects not working in Internet Explorer 6

2009-02-06 Thread Tintin81
Hi Henry, Thanks you very much for your help. I have eradicated the comma and also did some other polishing work, but nothing has changed :-( The error message I am getting in Internet Explorer 6 is still the same. What bugs me is that Internet Explorer doesn't tell me the exact name of the

[jQuery] Re: Superfish

2009-02-06 Thread uztha4c
just take a look at the source code for the site...basically it looks like this: li class=nav_pressa href=/briefing_room/ class=nav_itemspanThe Briefing Room/span/a div class=menu ul class=sub_nav lia href=/blog/The Blog/a/li lia href=/weekly_address/Your

[jQuery] Re: JQuery effects not working in Internet Explorer 6

2009-02-06 Thread ..:: sheshnjak ::..
First try to replace first line in code of your page with !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN http:// www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd and see if it resolves anything. It could be only that, if not then try to validate your page (currently you have 20 warnings, no

[jQuery] Re: jQuery offsetParent - using with drag/drop UI problem in IE7

2009-02-06 Thread tom gee
ah finally i managed to find out what was causing it !!! not sure if this is something jQuery can even account for really, unless I guess if jQuery has been used to update the DOM, but its due to the ossetParent bug with IE, when an element has been updated via the DOM it throws an

[jQuery] Re: JQuery effects not working in Internet Explorer 6

2009-02-06 Thread Tintin81
Hi and thanks for your feedback. Changing the document type didn't improve anything though :-( I think the devil is in my functions.js file. Where would I validate javascript files? Any ideas? Thanks... On Feb 6, 11:48 am, ..:: sheshnjak ::.. sheshn...@gmail.com wrote: First try to replace

[jQuery] Back or Continue Solution to UI Tabs and Jquery Form

2009-02-06 Thread Mario Moura
Hi Folks I did this with ajax tab options and Jquery Form $(document).ready(function() { $(#myForm).ajaxForm( function() { $(#tabs).tabs(select,2); }); }); Inside of my tab 1 have input type=submit id=back class=click value=« Back name=back/ input type=submit id=continue

[jQuery] the french accents and jQuery

2009-02-06 Thread phicarre
This is the sketeton of my HTMP page: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd; html xmlns=http://www.w3.org/1999/xhtml; xmlns:v=urn:schemas- microsoft-com:vml lang=fr xml:lang=fr head ... meta http-equiv=content-type

[jQuery] Re: Cross domain Ajax without Proxy

2009-02-06 Thread jay
I tested it and it works cross-domain with IE7 and FF3. It appears to send the data URL encoded inside the CSS like so: #cr0 { background: red url(http://cssrpc/%3Ch1%3EResult%20from%20CSS %201%3C/h1%3E); } #cr1 { background: blue url(http://cssrpc/%3Cp%3EThis%20is%20lorem%20ipsum

[jQuery] Re: the french accents and jQuery

2009-02-06 Thread Giovanni Battista Lenoci
phicarre ha scritto: meta http-equiv=content-type content=text/html; charset=iso-8859-1 / Use always UTF8 for solving problems related on special chars. -- gianiaz.net - web solutions via angelo custode, 10 - 23100 sondrio (so) - italy +39 347 7196482

[jQuery] Re: IE7: Setting ColSpan as Attribute

2009-02-06 Thread Stefan
Excellent solution! Had the same exact problem and was scratching my head for a while. Thank you very much! -Stefan On Jan 2, 9:18 am, NRutman nathan.rut...@gmail.com wrote: This had me scratching my head for a while, so I wanted to share it in case it might help someone else: It seems

[jQuery] Re: jQuery AutoComplete - how to post a variable if option is selected?

2009-02-06 Thread Han
James, that problem that you just described is the exact problem that I am having. I can get the autocomplete plugin to update a hidden input with an id value perfectly fine if the user selects a value from the list and triggers the result() function, however I also need it to clear the hidden

[jQuery] Dropline menu which hides when not in use

2009-02-06 Thread David Cognito
I'm trying to find a dropline menu similar to http://www.cssplay.co.uk/menus/pro_dropline7.html (but without all the conditional comments used for IE6 + IE7). I need clean nested ul + li to make it work with http://www.madebyfrog.com/ http://users.tpg.com.au/j_birch/plugins/superfish/#sample4

[jQuery] Newbie question - downloading jQuery

2009-02-06 Thread rontivo
I just stumbled across jQuery - I'm very impressed with what I've seen on the site. In my case my interest was sparked by a desire to put a floating dialog on our site. I've downloaded jQuery, and I was able to copy the code from the sample and get a dialog to show up, but I notice that the

[jQuery] Datepicker UI Opening at Random / Unexpected Locations

2009-02-06 Thread Dayson Pais
Hi, I have a Datepicker UI linked to a textbox using the following code: $(document).ready(function(){ txtDOB = $(input[name=txtDOB]); txtDOB.datepicker(); }); Screenshot of the Textbox: http://arch.kimag.es/share/85588260.jpg When I click on the textbox, the calendar opens at

[jQuery] Jquery plugin localisation nightmare

2009-02-06 Thread Karnius
Hi guys, I got a plugin I want to do the localisation in french. I decided to go with a similar solution of the UI datepicker. Adding a french js and reparse my json object in french from there. But it just do not work and i don't have a clue how. Please help Live english version :

[jQuery] Superfish with semi transparent background

2009-02-06 Thread Rui Peixeiro
Hi, I try to use Superfish with semi transparent background, making this: .sf-menu li { background: #404040; filter:alpha(opacity=90); /* Internet Explorer */ -moz-opacity:0.90; /* Mozilla 1.6 and below */ opacity: 0.90;

[jQuery] Re: [autocomplete] Problem with .result

2009-02-06 Thread Han
Has anyone figured out a solution to this? I'm trying to modify the autocomplete plugin so that it triggers a different function (something like clearField() instead of result()) when you click anywhere outside of the autocomplete search. You can then write some javascript to clear the hidden

[jQuery] Re: Is this bug in IE or ui tabs

2009-02-06 Thread Varun Khatri
any ideas ? On Thu, Feb 5, 2009 at 5:56 PM, Varun Khatri khatri.vk1...@gmail.comwrote: I am using a function like : $('.ui-tabs-nav').bind('tabsselect', function(event, ui) { $(input[rel='currentTab']).val(ui.index); $(#example div.ui-tabs-panel).empty(); }); It just

[jQuery] Re: jqURL plugin throwing JS errors

2009-02-06 Thread Andy Matthews
Forgot to mention that I'm using jquery-1.2.3 for this project. andy _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Andy Matthews Sent: Friday, February 06, 2009 11:50 AM To:

[jQuery] Re: Back or Continue Solution to UI Tabs and Jquery Form

2009-02-06 Thread James
How about, instead of: x = this.id; try: x = $(this).attr('id'); On Feb 6, 1:22 am, Mario Moura moura.ma...@gmail.com wrote: Hi Folks I did this with ajax tab options and Jquery Form $(document).ready(function() {     $(#myForm).ajaxForm( function() {        $(#tabs).tabs(select,2);    

[jQuery] Re: Newbie question - downloading jQuery

2009-02-06 Thread brian
What did you download? There is the main jquery library (plain, minified, etc.) and there's all the UI stuff. If you want to use the UI widget/effect libraries you'll have to get them separately. However, you can get them as prepackaged bundles based on the things you want:

[jQuery] Re: Problem with .result

2009-02-06 Thread Han
I just answered my own question. Here's the scenario and what I did to the autocomplete plugin: I have an autocomplete field and a hidden field next to it. The autocomplete field is for names, and the hidden field is for the id of the name, which is used to query the database for the record.

[jQuery] Re: jQuery AutoComplete - how to post a variable if option is selected?

2009-02-06 Thread Han
Solved my own problem. See solution here: http://groups.google.com/group/jquery-en/msg/89adfbd3e15fde09 on discussion: http://groups.google.com/group/jquery-en/browse_thread/thread/84950b404129b00b On Feb 6, 10:29 am, Han hgc...@gmail.com wrote: James, that problem that you just described is

[jQuery] Re: jqURL plugin throwing JS errors

2009-02-06 Thread Josh Nathanson
Andy - that's my plugin - do you have a link I could look at? -- Josh _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Andy Matthews Sent: Friday, February 06, 2009 9:50 AM To: jquery-en@googlegroups.com Subject:

[jQuery] Re: JQuery effects not working in Internet Explorer 6

2009-02-06 Thread James
I'm finding that it comes from the (packed) Validation plug-in script. I think it might need a semi-colon at the end of that whole packed string. Try adding that manually and see if it makes a differences. Try the min version also if you haven't. On Feb 6, 6:30 am, Tintin81 tkleem...@gmail.com

[jQuery] Re: All is well except in IE - links initially not clickable

2009-02-06 Thread precar
Could I get some help on this please? Thank you, Precar. On Jan 30, 8:52 am, precar pranshua...@gmail.com wrote: Hi, Yes, I'm using the bind() method with 'click'.  Is that the correct approach? Precar. On Jan 28, 9:47 am, amuhlou amysch...@gmail.com wrote: It looks like it's not

[jQuery] Re: All is well except in IE - links initially not clickable

2009-02-06 Thread precar
I've tried using Firebug for debugging but since there's nothing technically wrong in the script, I can't get much out of it. Is there a way to use Firebug for debugging something that's not broken but isn't functioning like you want it to? On Feb 6, 11:27 am, precar pranshua...@gmail.com

[jQuery] Re: Jquery plugin localisation nightmare

2009-02-06 Thread Ricardo Tomasi
allRules appears to be a var (global?) inside the validationEngine function, not a property. Isn't it easier to just rewrite the whole validation js? On Feb 6, 12:46 pm, Karnius cedric.du...@gmail.com wrote: Hi guys, I got a plugin I want to do the localisation in french. I decided to go with

[jQuery] Re: New Plugin: jQuery Finder (Mac-style 'Treeview' with Columns)

2009-02-06 Thread Nicolas R
v0.6a is out http://www.nicolas.rudas.info/jQuery/Finder/ Following up on Nikola's idea, I've also made this: http://www.nicolas.rudas.info/jQuery/Finder/v0.6a/api.html The jQuery API, finder style. It's doesn't give any API docs tho at the moment, just a list of methods (the json data provided

[jQuery] jMaps: Unable to continue, in need of new maintainer.

2009-02-06 Thread Tane Piper
Hi folks, Unfortunately this has been on the cards for a while now. Due to an increase in my work schedule, and major move into Android application development I simply cannot afford the time to maintain this library any more. However I don't want to see the project die and I am looking for a

[jQuery] Re: jqURL plugin throwing JS errors

2009-02-06 Thread Andy Matthews
Unfortunately it's in an administration area. I could provide some code for you though if that would help. andy _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Josh Nathanson Sent: Friday, February 06,

[jQuery] $().jqGrid is not a function

2009-02-06 Thread Chuk
Hi. I'm making my first attempt at utilizing JQGrid with a CGIDEV2 application. When loading the page, I keep getting an error that says $(#results').jqGrid is not a function. Here's my JS: $(document).ready(function() { var columnNames = ['Product Group','Description','Turnover

[jQuery] Re: list traversing

2009-02-06 Thread Karl Swedberg
Just for the record, if you weren't able to modify the html, you could use my Text Children plugin, which, unlike .text(). isn't recursive: http://plugins.learningjquery.com/textchildren/ --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Feb 5, 2009, at

[jQuery] Re: What is difference between ADO and RDO

2009-02-06 Thread Karl Swedberg
sorry about that, folks. The user is now banned.. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Feb 6, 2009, at 1:36 AM, Michael Geary wrote: And let me Google that for you: http://groups.google.com/groups?q=agile.scrapping%40gmail.com -Mike From:

[jQuery] Re: jqURL plugin throwing JS errors

2009-02-06 Thread Josh Nathanson
Hey Andy - looks like this might be a Firebug bug - read down to the bottom of this link: http://code.google.com/p/fbug/issues/detail?id=581 -- Josh _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Andy Matthews

[jQuery] Re: Jquery plugin localisation nightmare

2009-02-06 Thread Eric Garside
The easiest way to setup for localizations is to do local aliases for basically anything important. The idea is to have definition files (like localization.fr.js, localization.en.js) and abstracted variable names. For instance, you'd do things like: jQuery.fn[loc.validationEngine] =

  1   2   >