[jQuery] Re: Using jQuery with Wordpress

2009-02-04 Thread MH1988
I finally found some documentation regardng this. It seems that using jQuery inconjuction with Wordpress is fine however, you must use jQuery () instead of $. Further details also suggest that Wordpress won't register a jQuery plugin. On Feb 4, 6:43 pm, MH1988 m.lawrencehu...@gmail.com wrote:

[jQuery] Re: animations; browser problem or bad code?

2009-02-04 Thread re5et
uh that's odd, I don't get any errors in FF (except Warning: Error in parsing value for property 'opacity'. Declaration dropped.) I know it's not usable in IE6 as I haven't done anything towards IE compatibility yet. thanks for telling me about the error, though. so... does it work for

[jQuery] [tooltip] Upgraded to jquery 1.3.1 Tooltips doesn't show up

2009-02-04 Thread ksuess
Upgraded to jquery 1.3.1 Tooltips doesn't show up

[jQuery] Re: Upgraded to jquery 1.3.1 Tooltips doesn't show up

2009-02-04 Thread ksuess
Sorry my first post didn't show up in list and search.. On Feb 4, 10:02 am, ksuess k.su...@crojewe.ch wrote:  Upgraded to jquery 1.3.1 Tooltips doesn't show up

[jQuery] Re: Simple selector not working in 1.3.1 and webkit (safari and chrome)

2009-02-04 Thread Javier Martinez
Sure! Created http://dev.jquery.com/ticket/4058 Hope there is some easy patch, if not, I will regret to 1.2.6 inmediately :( 2009/2/3 John Resig jere...@gmail.com That's odd. Could you file a bug on this? http://dev.jquery.com/newticket Thanks! --John On Tue, Feb 3, 2009 at 10:39

[jQuery] Metadata and firefox 3.1beta2

2009-02-04 Thread maxbnet
Firefox 3.1b2 has a problem with \n. Test OK div id=test1 class=metadata {type : 'p',colors : ['5131C9'],size : '300x200'}/div Test KO div id=test2 class=metadata { type : 'p', colors : ['5131C9'], size : '300x200' }/div you can use this solution to fix this bug:

[jQuery] Re: Select empty textbox fields

2009-02-04 Thread Adrian Lynch
I was putting together an simple example to ask another question when I came across the same problem. Here's a basic example to highlight what's happening: script type=text/javascript src=/scripts/jquery-1.3.1.min.js/ script script type=text/javascript $(function() {

[jQuery] Re: click event

2009-02-04 Thread jQuery Lover
You can take advantage of event delegation by binding click event to the table tag and checking with if statement if the clicked cell is not the one that has a checkbox. For event delegation see: http://www.learningjquery.com/2008/03/working-with-events-part-1 For row checking and stuff see:

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

2009-02-04 Thread Adrian Lynch
Hello all. I have the following... div input type=text value=1 / /div div input type=text value=2 / /div div input type=text value=3 / /div ... and I want to select the second div because its child input has a value of 2. I know I could select the input then come back

[jQuery] Re: animations; browser problem or bad code?

2009-02-04 Thread re5et
will do what you suggested about the content loading, thanks! I temporarily disabled the content loading but it didn't have any effect on the animations :(

[jQuery] Re: Select empty textbox fields

2009-02-04 Thread jQuery Lover
Try this: $(#%= this.pnlInputFields.ClientID % input.inputFields:empty).addClass('inputFields_empty'); Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Feb 4, 2009 at 3:57 AM, brnwdrng brianwoodr...@gmail.com wrote: I have a set of text box inputs in a div, and

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

2009-02-04 Thread Mauricio (Maujor) Samy Silva
$('div:has(input[value=2])') Maurício -Mensagem Original- De: Adrian Lynch adely...@googlemail.com Para: jQuery (English) jquery-en@googlegroups.com Enviada em: quarta-feira, 4 de fevereiro de 2009 09:22 Assunto: [jQuery] Select element based on a value of its child element Hello

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

2009-02-04 Thread jQuery Lover
Adrian, I recommend using .parent() for better performance... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Feb 4, 2009 at 4:22 PM, Adrian Lynch adely...@googlemail.com wrote: Hello all. I have the following... div input type=text value=1 / /div

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

2009-02-04 Thread Stephan Veigl
Hi, just a little remark: add a child selector '' before the 'input' or you will select surrounding divs as well. $(div:has(input[value='2'])) by(e) Stephan 2009/2/4 Mauricio (Maujor) Samy Silva css.mau...@gmail.com: $('div:has(input[value=2])') Maurício -Mensagem Original- De:

[jQuery] Is this list too busy? jQuery list for your time zone

2009-02-04 Thread boermans
The time when I at least skimmed every message on this list in long gone. As jQuery becomes more and more popular, making your voice heard here gets increasingly difficult. Could time zone or locality be a useful way to divide the flow more effectively? Like local(ish) jQuery groups. What

[jQuery] Re: Is this list too busy? jQuery list for your time zone

2009-02-04 Thread jQuery Lover
I receive emails from the list and easily keep track of my postings in gmail. You can click on Sent mail and see if you have any replies in thread you've posted... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Feb 4, 2009 at 5:16 PM, boermans boerm...@gmail.com

[jQuery] Re: animations; browser problem or bad code?

2009-02-04 Thread jQuery Lover
Worked the same in Chrome, FF, IE7. My 2 cents... PS. Thanks Stephan for the tip... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Feb 4, 2009 at 4:51 PM, Stephan Veigl stephan.ve...@gmail.com wrote: Hi, I played around with your site and code a little bit

[jQuery] Re: Is this list too busy? jQuery list for your time zone

2009-02-04 Thread Oliver Boermans
2009/2/4 jQuery Lover ilovejqu...@gmail.com: I receive emails from the list and easily keep track of my postings in gmail. You can click on Sent mail and see if you have any replies in thread you've posted... Ah, perhaps the mistake I have been making is sending and reading my messages in

[jQuery] Turning JSON-formatted AJAX data into data usable by ColdFusion

2009-02-04 Thread Rick Faircloth
Ok, so I'm at the point in using jQuery AJAX where I'm now returning complicated data of queries (multiple) and bits of data for use back on the calling page. In my CFC's, I use the returnFormat=json to send data back properly json-formatted. However, now, I need to know how to get that json

[jQuery] Re: Not work opacity in jQuery 1.3.1 and opera 9.2

2009-02-04 Thread zhekanax
This happens because jQuery think Opera9.2 doesn't support opacity css parameter. So I use this workaround: if($.browser.opera) { $.support.opacity = true; } On Jan 23, 11:52 am, NeX nex...@ya.ru wrote: Can anyone help me? In jQ 1.3.1 andopera9.23 i can't changeopacityof element with

[jQuery] getscript without parameters... an alernative?

2009-02-04 Thread pere roca
hi all, if I'm not wrong we cannot send parameters to a script called by getScript function; so, if we download or get the script and then we call a function inside the script, shouldn't it work? the function is there, now in our browser... but doesn't work. $.getScript('script.js'); x();

[jQuery] Re: jQuery image rotating

2009-02-04 Thread Liam Potter
Nice plugin, the bug that doesn't load the images in IE first time round still occurs in IE6. And the animation is quite choppy in IE6 as well. I'm not sure you should be worried about IE6 issues though. I think with the RC1 release of 8 we should (as a group of designers and developers)

[jQuery] Re: How to submit a form with an Anchor rather than an Input tag?

2009-02-04 Thread Liam Potter
why you using get element by id? make sure your form has a name ( form name=myform ) then use this a class=button href=javascript://document.myform.submit();Send/a || Tintin81 wrote: Hi, I have a very simple contact form that I would like to submit using an anchor rather than an input tag.

[jQuery] Re: $.css() onload

2009-02-04 Thread eagleon
kim3er, I think MorningZ was answering my question about $ (window).load's intended usage, and where I could use it! On Feb 4, 2:37 am, kim3er rich...@dogma.co.uk wrote: Not sure what you mean MorningZ, looks okay to me. I tend put my code before the closing body tag though. On Feb 3, 10:03 

[jQuery] Re: animations; browser problem or bad code?

2009-02-04 Thread re5et
awesome. thanks a million times, I would never have thought of that.

[jQuery] Re: ajaxSubmit using validate and form plugin (succes option)

2009-02-04 Thread TUNGA
Hello, just try: submitHandler: function(form) { $.ajax({ type: 'POST', url: 'sendmail.php', data: $('#FormName').serialize(),

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

2009-02-04 Thread jQuery Lover
This is how IE interprets z-index settings for positioned elements. Google it and you will surely find a fix: http://www.google.com/search?q=ie+z-index+issue Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Feb 4, 2009 at 2:56 PM, Michael Smith smi...@gmail.com

[jQuery] Re: How to submit a form with an Anchor rather than an Input tag?

2009-02-04 Thread Liam Potter
didn't know this, cheers. ok, replace the javascript with this then |document.forms['myformid'].submit();| Klaus Hartl wrote: The name attribute is deprecated for the form element. Using an id ist good practice. --Klaus On 4 Feb., 14:41, Liam Potter radioactiv...@gmail.com wrote: why

[jQuery] Re: Is this list too busy? jQuery list for your time zone

2009-02-04 Thread Liam Potter
It will be too many email clients, as I have my work email setup in thunderbird as well. jQuery Lover wrote: Gmail moves new threads to the top :) Use gmail (offline version) :) Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Feb 4, 2009 at 6:11 PM, Liam

[jQuery] Re: getscript without parameters... an alernative?

2009-02-04 Thread pere roca
hi Eric, I don't understand what you mean... the functions in script.js (called via getScript) work if I call $.getScript but I wanna call these functions from outside (after script is loaded), so I can pass some parameter to the functions that are inside script.js. $.getScript is

[jQuery] Re: How to submit a form with an Anchor rather than an Input tag?

2009-02-04 Thread Tintin81
Hi Liam and Klaus, thanks for your swift feedback. I forgot to say that I am using the a href=http://docs.jquery.com/ Plugins/ValidationJQuery Validation Plugin/a for this matter. The function I am using is rather simple: $(document).ready(function() {

[jQuery] having a problem with ' and strings

2009-02-04 Thread dirk w
hello jquery community, i am getting some strings from a page i don't have influence on. i just append those to elements (thanks to jquery this works like a charm!): $(#searchResultList).append(li class='searchResultEntry'id=' + videoId + ' title=' + titleFull + ( + minutes + : + seconds +

[jQuery] How to use validator in my existing HTML pages

2009-02-04 Thread himanshu
Hi, I have to apply jQuery validation on my existing HTML page using From Validator Plug-in. But it is not working. Can any one help me with some sample How I can apply jQuery validation on my existing HTML pages without changing much in existing tags. Thanks, Himanshu

[jQuery] a tag with good text popup (without title)

2009-02-04 Thread Petty Pavlow
Hi I would like to do some html (a tag) links.When u go with mouse on the top of this link it will pop up a box with (maybe with a photo or without) some good texts.I know i could do it with html (a tag title) but it seems like old kind. Thanks.

[jQuery] Re: a tag with good text popup (without title)

2009-02-04 Thread Liam Potter
from what I understand, you would need to do this to achieve the effect next to the link, put a div, containing what you want to popup hide this div (display:block) use the hover event to show the div when you hover over the link and to hide it when you move out. Petty Pavlow wrote: Hi I

[jQuery] Re: Click Links in the Nnavigation Bar

2009-02-04 Thread Karl Swedberg
On Feb 4, 2009, at 1:09 AM, Pedram wrote: Thanks Karl , It helped me alot Not a problem. Glad to help. Since it's not possible in a valid DOM to have an A that is a descendant of a UL but not a descendant of an LI, the LI is superfluous. No need to do an extra getElementsByTagName there.

[jQuery] Re: Is this list too busy? jQuery list for your time zone

2009-02-04 Thread Ricardo Tomasi
I opted for the daily digest mail. I just take a look at the messages' subjects and choose what I want to read, works quite well, I don't waste any time. - ricardo On Feb 4, 10:16 am, boermans boerm...@gmail.com wrote: The time when I at least skimmed every message on this list in long gone.

[jQuery] Re: having a problem with ' and strings

2009-02-04 Thread dirk w
hello liam, thanks for the tip, i will try using them the same way. you actually forgot one in your code but now it works fine, thanks! $(#searchResultList).append('li class=searchResultEntry id=' + videoId + ' title=' + titleFull + ' (' + minutes + ':' + seconds +')img src=' + thumbnailUrl + '

[jQuery] Re: having a problem with ' and strings

2009-02-04 Thread Liam Potter
Glad to of helped. My system has worked for me so far, but I'm sure there are people who would argue another way of doing things. dirk w wrote: hello liam, thanks for the tip, i will try using them the same way. you actually forgot one in your code but now it works fine, thanks!

[jQuery] Tablesorter plugin - lazy caching

2009-02-04 Thread petrillodavide
Hello everybody, I'm developing an application in which the users will deal with a big table (600+ rows). One target for the application is that it has to show up as fast as possible; anyway, applying the tablesorter on the table, the initial caching steals more than one second to the process.

[jQuery] Re: Select empty textbox fields

2009-02-04 Thread Aaron Gundel
$(#%= this.pnlInputFields.ClientID % input[class='inputFields']:not([value])).toggleClass('inputFields_empty'); should do the trick. On Tue, Feb 3, 2009 at 2:57 PM, brnwdrng brianwoodr...@gmail.com wrote: I have a set of text box inputs in a div, and want to color the empty ones red (css)

[jQuery] Re: getscript without parameters... an alernative?

2009-02-04 Thread Eric Garside
Oh, neat. I didn't know jQuery continued to fire docready code after it loaded. Awesome. :D On Feb 4, 10:14 am, Ricardo Tomasi ricardob...@gmail.com wrote: Actually after the document has loaded, any function passed to $ (document).ready() will fire immediately. Also functions are called in

[jQuery] Re: Detecting wether an image link is going to work

2009-02-04 Thread daveJay
On Feb 3, 6:15 pm, Karl Rudd karl.r...@gmail.com wrote: You could try using the error handler: $(image[1]).bind('error', function(){ /* ... */ }); I believe it works for all the common browsers. Karl Rudd Thanks Karl, that works fantastically! As you can see here now, it just skips

[jQuery] Re: Detecting wether an image link is going to work

2009-02-04 Thread daveJay
I'd try to avoid writing a routine explicitly for each image and instead use a loop. This is thoroughly untested. Thanks a ton Brian for the help with that code, I had no idea you could load an array like that! The loops were helpful as well, I used the each loop on the image object array to

[jQuery] Next/Previous element in each loop

2009-02-04 Thread Adrian Lynch
Hey all, I'm loop over some nodes with each() and I need to look at the next and previous elements for the current iteration. script type=text/javascript $(function() { $(div).each(function(i) { var prev = [SELECTOR FOR PREVIOUS DIV].text();

[jQuery] After update to jQuery 1.3.1, jQuery UI dialog relatived event handle options don't work

2009-02-04 Thread snow
After update jQuery from 1.2.6 to jQuery 1.3.1. The jQuery UI dialog relatived event handle options don't work ex. drag dragStop resize resizeStop etc. and i tried 1.3.0, it seems the same problem. btw, i'm not sure if the other widgets have the same issue. only 1.2.6 work fine. Does anybody

[jQuery] Re: A couple of jQuery questions (recent converter from Prototype to jQuery)

2009-02-04 Thread Ricardo Tomasi
Hi and welcome to jQuery :] A simple but not very effective way to do that is $ ('#myelement').parents('body').length, or, if you are sure you're dealing with a single element, a check for $('#myel')[0].parentNode would suffice. You can also implement this as a plug-in: jQuery.fn.inDOM =

[jQuery] Re: getscript without parameters... an alernative?

2009-02-04 Thread Ricardo Tomasi
Actually after the document has loaded, any function passed to $ (document).ready() will fire immediately. Also functions are called in the order they were added, so you can put it inside the getScript callback like this: $(document).ready(function(){ x = function(d){ alert(d) }; });

[jQuery] JQuery Collapsing Lists

2009-02-04 Thread Gilbert
Hi I'm a newbie to JQuery. I have a collapsible list made from an unordered html list usin the following code I found at http://homework.nwsnet.de/news/ea21_turn-nested-lists-into-a-collapsible-tree-with-jquery which works fine. I've even managed to workout how it works :-)

[jQuery] Re: How to use validator in my existing HTML pages

2009-02-04 Thread Liam Potter
can we see the page please himanshu wrote: Hi, I have to apply jQuery validation on my existing HTML page using From Validator Plug-in. But it is not working. Can any one help me with some sample How I can apply jQuery validation on my existing HTML pages without changing much in existing

[jQuery] Re: animations; browser problem or bad code?

2009-02-04 Thread Stephan Veigl
Hi, I played around with your site and code a little bit (hope this was ok :-). What I discovered was that FF (and others) seems to have problems with setting (or animating) the width of an empty div via css. Adding a $('.main_content').html(nbsp;); before your open animation will do the

[jQuery] Re: Next/Previous element in each loop

2009-02-04 Thread Stephan Veigl
Hi, there are prev() and next() functions doing exactly what you need: $(div).each( function() { var prev = $(this).prev(); var next = $(this).next(); alert( prev.text() + - + next.text() ); }); (I've skipped the extra code for the first and last element for simplicity.) by(e) Stephan

[jQuery] After update to jQuery 1.3.1, jQuery UI dialog relatived event handle options don't work

2009-02-04 Thread snow
After update jQuery from 1.2.6 to jQuery 1.3.1. The jQuery UI dialog relatived event handle options don't work ex. drag dragStop resize resizeStop etc. and i tried 1.3.0, it seems the same problem. btw, i'm not sure if the other widgets have the same issue. only 1.2.6 work fine. Does anybody

[jQuery] Re: Detecting wether an image link is going to work

2009-02-04 Thread brian
On Wed, Feb 4, 2009 at 10:46 AM, daveJay davidjo...@exit42design.com wrote: I'd try to avoid writing a routine explicitly for each image and instead use a loop. This is thoroughly untested. Thanks a ton Brian for the help with that code, I had no idea you could load an array like that! The

[jQuery] jQuery UI Dialog - how to hide 'X' close box?

2009-02-04 Thread Sam H
Is there any way with jQuery UI Dialog to not show the X close box in the titlebar? (what if I want to show a message dialog that the user cannot close, such as a Loading... dialog)

[jQuery] Re: Turning JSON-formatted AJAX data into data usable by ColdFusion

2009-02-04 Thread Charlie Griefer
you're overlooking the fact that CF executes on the server. JS executes on the client. When you get data returned from an AJAX call, you're on the client. You're in the realm of JS. There's no converting the data into a usable (CF) format at that point. All of the CF is done on the server

[jQuery] Re: Using jQuery with Wordpress

2009-02-04 Thread Richard D. Worth
Also, you can use this pattern to use $ inside a closure: (function($) { // ... all your jQuery code using a $ in here })(jQuery); - Richard On Wed, Feb 4, 2009 at 3:04 AM, MH1988 m.lawrencehu...@gmail.com wrote: I finally found some documentation regardng this. It seems that using jQuery

[jQuery] Re: Detecting wether an image link is going to work

2009-02-04 Thread Liam Potter
I don't see the gallery glitch, it probably has more to do with your CPU speed and RAM then your browser, as it is a large area to apply an opacity fade too. Is you mother's machine higher spec then yours? brian wrote: On Wed, Feb 4, 2009 at 10:46 AM, daveJay davidjo...@exit42design.com

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

2009-02-04 Thread Stephan Veigl
Good point. I've just tested input[value=''] and got an error in jQuery.js. Just tested it with other HTML attributes and got the same results. Empty attributes are not selected with a element[attr] and doing a element[attr=''] results in an error. Is this a bug? by(e) Stephan 2009/2/4

[jQuery] Re: jQuery UI Dialog - how to hide 'X' close box?

2009-02-04 Thread Liam Potter
css Sam H wrote: Is there any way with jQuery UI Dialog to not show the X close box in the titlebar? (what if I want to show a message dialog that the user cannot close, such as a Loading... dialog)

[jQuery] Re: Is this list too busy? jQuery list for your time zone

2009-02-04 Thread jQuery Lover
Gmail moves new threads to the top :) Use gmail (offline version) :) Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Wed, Feb 4, 2009 at 6:11 PM, Liam Potter radioactiv...@gmail.com wrote: I use thunderbird, which has a threaded option, keeps tracks of

[jQuery] Re: toggle checkbox when clicking td

2009-02-04 Thread Karl Swedberg
On Feb 2, 2009, at 10:37 PM, Karl Swedberg wrote: On Feb 2, 2009, at 6:47 PM, Slafs wrote: Karl thanks for your tutorial. But it seems that examples for adding the selected class doesn't work when I click the row but only the checkbox itself Well, that is very strange. It works with

[jQuery] Re: After update to jQuery 1.3.1, jQuery UI dialog relatived event handle options don't work

2009-02-04 Thread Richard D. Worth
jQuery UI 1.5.3 (stable) is only compatible with jQuery 1.2.6 jQuery UI 1.6rc6 (preview) is only compatible with jQuery 1.3+ If you have any further jQuery UI questions, we'd love to help you out with them over on the jQuery UI list: http://groups.google.com/group/jquery-ui See you there.

[jQuery] Re: getscript without parameters... an alernative?

2009-02-04 Thread Eric Garside
Basically, the problem is this here: $(document).ready(function(){ You wrapped it inside an event that will only fire when the document throws its ready event. If you include the script after the page is loaded, regardless from where, th event will never fire. If you remove the

[jQuery] Re: jQuery UI Dialog - how to hide 'X' close box?

2009-02-04 Thread Richard D. Worth
See this thread http://groups.google.com/group/jquery-ui/browse_thread/thread/9c8fbe30a91396cc for some examples. - Richard On Wed, Feb 4, 2009 at 11:24 AM, Liam Potter radioactiv...@gmail.comwrote: css Sam H wrote: Is there any way with jQuery UI Dialog to not show the X close box in

[jQuery] Re: animations; browser problem or bad code?

2009-02-04 Thread re5et
btw, I fixed the Could not get the display property. Invalid argument error. but that didn't help either...

[jQuery] click event

2009-02-04 Thread jq noob
I want to do a onclick event for anywhere in a table row except for a specific cell. In that cell I want to be able to click a checkbox. I have any # of rows and 12 columns in the table. I usually use a something like this tr onclick=window.location='%=site_location%?noCache=%=randomnum()

[jQuery] How to submit a form with an Anchor rather than an Input tag?

2009-02-04 Thread Tintin81
Hi, I have a very simple contact form that I would like to submit using an anchor rather than an input tag. This is what I've got so far: [code]a class=button href=javascript:{} onclick=document.getElementById('contact-form').submit(); return false;Send/a[/code] Unfortunately, it doesn't work

[jQuery] After update to jQuery 1.3.1, jQuery UI dialog relatived event handle options don't work

2009-02-04 Thread snow
After update jQuery from 1.2.6 to jQuery 1.3.1. The jQuery UI dialog relatived event handle options don't work ex. drag dragStop resize resizeStop etc. and i tried 1.3.0, it seems the same problem. btw, i'm not sure if the other widgets have the same issue. only 1.2.6 work fine. Does anybody

[jQuery] Re: having a problem with ' and strings

2009-02-04 Thread Liam Potter
you need to switch it around, replace all to be ' and all ' to be Personally, all my selectors use then functions use ' $(#searchResultList).append('li class=searchResultEntryid=' + videoId + ' title=' + titleFull + ' (' + minutes + ':' + seconds +')'img src=' + thumbnailUrl + '

[jQuery] Re: Turning JSON-formatted AJAX data into data usable by ColdFusion

2009-02-04 Thread Rick Faircloth
Oh..so true. Didn't even think of it that way. Bummer.that means I've got to learn more JS! I've looked at some blogs and tutorials that deal with outputting JS, but they've all dealt with queries. Know of any resources that provide guidance for dealing with structs? My current

[jQuery] Re: getscript without parameters... an alernative?

2009-02-04 Thread Eric Garside
If you call $.getScript after your regular scripts are already loaded, domready will not fire again. On Feb 4, 8:16 am, pere roca pero...@gmail.com wrote: hi all, if I'm not wrong we cannot send parameters to a script called by getScript function; so, if we download or get the script and

[jQuery] Re: Select empty textbox fields

2009-02-04 Thread brnwdrng
I got the second suggestion to work (Aaron's); though there was a minor typo that had to be fixed - the ending double quote before ).toggleClass I fixed my secondary problem by removing the class from all the fields prior to applying the shade effect on each user submit. So, it ends up looking

[jQuery] Re: Detecting wether an image link is going to work

2009-02-04 Thread daveJay
On Feb 4, 11:20 am, brian bally.z...@gmail.com wrote: Yeah, I thought it didn't look right. Even doing it with each() like that . It's too bad one can't create an Image oject with with both the dimensions and the src. Well the other factor is that I want the images to load in succession as

[jQuery] CLick event for Select Box not supported by IE

2009-02-04 Thread Pedram
Dear folk , I have a select box with Multiple Options Such as below Select class=actions option value=NEWNew/Edit/option option value=a1/option option value=b2/option option value=c3/option /select I wanted to bind a Click event to the select box , so when ever we Click on the Option

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

2009-02-04 Thread Adrian Lynch
Nice one! Should have spotted :has()... I've asked this in another thread but I'll slip it in here too, does the selector... input[value=''] ... work for any of you? Adrian On Feb 4, 12:11 pm, Stephan Veigl stephan.ve...@gmail.com wrote: Hi, just a little remark: add a child selector ''

[jQuery] A couple of jQuery questions (recent converter from Prototype to jQuery)

2009-02-04 Thread Bisbo
Hi there, I'm a recent converter from Prototype to jQuery and I've got a couple of questions. Firstly, if I am storing a jQuery object containing an element (var el = $('#myelement');) and then I subsequently remove that element ($ ('#myelement').remove()), how can I test my el variable to see

[jQuery] Re: animations; browser problem or bad code?

2009-02-04 Thread Stephan Veigl
Hi, I took a short look on your code and noticed that you load your main content after the animation has finished. Is this really what you want to do? Shouldn't it be rather that the main content is loaded in background as soon as the link is clicked, and set to visible after the animation has

[jQuery] Re: Turning JSON-formatted AJAX data into data usable by ColdFusion

2009-02-04 Thread Charlie Griefer
Having to learn more JS shouldn't really be a bummer. More tools in the toolbox isn't a bad thing. i don't think you need any particular plug-ins... just read the jQuery docs. http://docs.jquery.com/Utilities/jQuery.each#objectcallback that'll iterate over a JS object or array. As you're

[jQuery] Re: Long List, no particular order of IDs

2009-02-04 Thread Stephan Veigl
Hi Drew, I'm not a JavsScript optimization expert, but here's my approach. Do you create the item list dynamically? If so, I would add every newly created jQuery object of an item into an array. Then loop through the array and expand / collapse as you like. If the HTML is created on server

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

2009-02-04 Thread Michael Smith
Hi again I added this css: .sf-menu li li a { background:red; z-index:100; } and as you can see on : http://dev2.savingforchildren.co.uk/mjs/menu.epl When using IE (in my case IE6) the submenus still appear under the main menus. Anything I can do to get them on top?

[jQuery] Re: How to submit a form with an Anchor rather than an Input tag?

2009-02-04 Thread Klaus Hartl
The name attribute is deprecated for the form element. Using an id ist good practice. --Klaus On 4 Feb., 14:41, Liam Potter radioactiv...@gmail.com wrote: why you using get element by id? make sure your form has a name ( form name=myform ) then use this a class=button

[jQuery] Re: Is this list too busy? jQuery list for your time zone

2009-02-04 Thread Liam Potter
I use thunderbird, which has a threaded option, keeps tracks of conversations quite well, new posts are bold. I just wish it would move the entire conversation to the top of the list though. I only use this list at work though, so when I come in on a monday, unless I've asked some questions

[jQuery] Re: Jquery cycle plugin - YouTube videos

2009-02-04 Thread Ado
Still no joy, very frustrating :( Although Im no expert... Would really appreciate to hear from anyone who has had a similar issue, and if they ever found a fix... A. On Feb 3, 5:51 pm, Ado adrianja...@gmail.com wrote: Thanks for looking, cant see much on Google at the moment apart from

[jQuery] Re: validation plugin and ui tabs

2009-02-04 Thread Caldur
Well, you can have as many form elements as you want on a page, but you can only have one form runat=server element per page. Not sure if that will help you any. On Feb 3, 6:12 pm, varun khatri.vk1...@gmail.com wrote: Hi Everybody I am trying to use validation plugin with ui tbas. suppose I

[jQuery] Re: Tablesorter plugin - lazy caching

2009-02-04 Thread aquaone
you could have the intiial page give a class to the th (or thead w/ closest/delegation) and bind a click event to that class that would enable tablesorter and remove the class, stephen On Wed, Feb 4, 2009 at 05:28, petrillodavide davide.petri...@gmail.comwrote: Hello everybody, I'm

[jQuery] Posting a serialized string without Ajax ??

2009-02-04 Thread sinkingfish
Hi, I think i might be overlooking the obvious but I've got a string from my sortable list, something like : item[]=3item[]=1... I don't want to post this using ajax, I want to do a plain old post, but how do I append the string to the post url? Thanks Brian -- View this message in context:

[jQuery] Re: Turning JSON-formatted AJAX data into data usable by ColdFusion

2009-02-04 Thread Rick Faircloth
yeah, I know.it's not a bummer knowing more JS, but at this point projects are falling behind and I can't afford much more time for education. It's time to produce! I could have written this app 20 times by now except for the JS/AJAX part! Maybe it's time to once again turn to a private

[jQuery] Re: Posting a serialized string without Ajax ??

2009-02-04 Thread Liam Potter
put it into a variable, and post the variable. sinkingfish wrote: Hi, I think i might be overlooking the obvious but I've got a string from my sortable list, something like : item[]=3item[]=1... I don't want to post this using ajax, I want to do a plain old post, but how do I append the

[jQuery] Re: Posting a serialized string without Ajax ??

2009-02-04 Thread Stephan Veigl
Hi Brain, you can put it into a hidden input field and do a normal user submit of the form. by(e) Stephan 2009/2/4 sinkingfish sinkingf...@gmail.com: Hi, I think i might be overlooking the obvious but I've got a string from my sortable list, something like : item[]=3item[]=1... I

[jQuery] Re: Posting a serialized string without Ajax ??

2009-02-04 Thread brian
On Wed, Feb 4, 2009 at 12:10 PM, sinkingfish sinkingf...@gmail.com wrote: Hi, I think i might be overlooking the obvious but I've got a string from my sortable list, something like : item[]=3item[]=1... I don't want to post this using ajax, I want to do a plain old post, but how do I

[jQuery] Re: ajaxfileupload response problem

2009-02-04 Thread Matt
to update regarding my error. Now I’m getting to the error callback. And I’m getting a: TypeError io.contentDocument.document is undefined happening here in the code: try { if(io.contentWindow) { xml.responseText = io.contentWindow.document.body? io.contentWindow.document.body.innerHTML:null;

[jQuery] Re: jQuery UI Dialog - how to hide 'X' close box?

2009-02-04 Thread Sam H
Perfect - thanks! On Feb 4, 10:32 am, Richard D. Worth rdwo...@gmail.com wrote: See this thread http://groups.google.com/group/jquery-ui/browse_thread/thread/9c8fbe3... for some examples. - Richard On Wed, Feb 4, 2009 at 11:24 AM, Liam Potter radioactiv...@gmail.comwrote: css

[jQuery] Re: Turning JSON-formatted AJAX data into data usable by ColdFusion

2009-02-04 Thread Charlie Griefer
Unfortunately, right now I just don't have the time to take on another project (even a small one like 'code consulting'), otherwise I'd be happy to. As far as someone who knows CF... that shouldn't really be an issue. You've -got- the data back already. You just need someone to show you how to

[jQuery] slideUp/Down jumpy in Firefox 3 but not in IE7?

2009-02-04 Thread Sam H
I don't remember if it was like this in jQuery 1.2, but I have 1.3.1 and I can clearly see that slideDown/Up is much smoother in IE7 than in Firefox 3. Is it just me?

[jQuery] Re: Tablesorter plugin - lazy caching

2009-02-04 Thread petrillodavide
Stephen, thanks for the tip ;) I'm using a similar workaround at the moment, I anyway think a lazy caching would be an useful feature for the plugin. Ciao, Davide. -- View this message in context: http://www.nabble.com/Tablesorter-plugin---lazy-caching-tp21830458s27240p21835411.html Sent

[jQuery] Re: slideUp/Down jumpy in Firefox 3 but not in IE7?

2009-02-04 Thread Andy Matthews
The jQuery team freely admits that they optimize for IE more so than the other browsers. So it's distinctly possible that this is true. -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Sam H Sent: Wednesday, February 04, 2009 11:28 AM

[jQuery] Re: a tag with good text popup (without title)

2009-02-04 Thread Ricardo Tomasi
Look for 'tooltip' at plugins.jquery.com This is the first result on google: http://www.codylindley.com/blogstuff/js/jtip/ On Feb 4, 12:35 pm, Petty Pavlow pettypav...@googlemail.com wrote: Hi I would like to do some html (a tag) links.When u go with mouse on the top of this link it will pop

[jQuery] Change subdomain on same page...

2009-02-04 Thread atomk
I have different subdomains pointing to the same file on my server - simple enough. What I'd like to do is essentially reverse that: Can the same file redirect to different subdomains? For example: http://adamkobrin.com When you click on any of the top 4 links, different content is loaded, but

[jQuery] Re: having a problem with ' and strings

2009-02-04 Thread Ricardo Tomasi
Replace all quotes inside your text variables with their correspondent HTML entities, then you should face no issues: titleFull = titleFull.replace(',#145;).replace('',quot;); I agree with Liam, it's best to use single quotes for the strings passed so you can use double quotes inside them. In

  1   2   >