[jQuery] Re: Tabs 3 Update tab content

2007-11-28 Thread Klaus Hartl
On 28 Nov., 20:06, Richard W <[EMAIL PROTECTED]> wrote: > Hi There > I'm realling ejoying using tabs, especially the ajax content. I would > like to know if there is painless way of updating the current tabs > content via ajax without using the tabs. For example you view the > content of a tab, cl

[jQuery] Re: limits using dblclick if too many elements ?

2007-11-28 Thread Suni
Looks like you found the problem :) I tested this without spaces, and indeed the browser (FF) goes mad. It first froze for a minute or so before totally crashing. It appears that if there are no spaces at all (even inside the divs) then something goes pretty badly wrong in Gecko. -- Suni

[jQuery] Re: Generate unordered list (noob)

2007-11-28 Thread Benjamin Sterling
change: var ul = jQuery("body").add("") to: var ul = jQuery('').appendTo('body'); I believe that add method just adds an element to an already existing jQuery object. On 11/28/07, longhairedsi <[EMAIL PROTECTED]> wrote: > > > Hello, > > I need to generate an unordered list based on array values

[jQuery] Re: problems about jquery.validate

2007-11-28 Thread Jacky Chen
Hi Jörn, you misunderstand my meaning.my english is poor,so i don't how to describe my opinion. The first problem is about the code following: stopRequest: function(valid) { this.pendingRequest--; if ( valid && this.pendingRequest == 0 && this.submitted && this.form() ) { jQuery(this.cu

[jQuery] Re: Tablesorter and event handlers on table rows

2007-11-28 Thread pambuk
Hi, I have the exact same problem and frankly, I'm out of ideas. Last thing I tried was writing a widget, to rebind events, but clicks are fired n+1 number of sortings. I'm a JS (and jQuery) noob, but I'd really appreciate a solution / workaround / hack / whatever. I guess I'll sort the table t

[jQuery] Re: Adding jQuery Libary to JSEclipse

2007-11-28 Thread dehneg
Aptana is a good plugin for Eclipse. But, as jQuery do not support scriptdoc format documentation any more, you can not have completion for jQuery older than 1.1.2. Have a look at this thread : http://groups.google.com/group/jquery-en/browse_thread/thread/24f40cfd6830b6dd/4a260af35c3ad4ca Alex

[jQuery] Generate unordered list (noob)

2007-11-28 Thread longhairedsi
Hello, I need to generate an unordered list based on array values, this is what i've been trying (where body is empty to begin with) var data = new Array("option 1", "option 2", "option 3") $(document).ready(function(){ var ul = jQuery("body").add("") for(i = 0;

[jQuery] Re: Our New (and first) Ajax E-Commerce project using jQuery

2007-11-28 Thread SimonRaven
On Nov 28, 4:06 am, resetstudio <[EMAIL PROTECTED]> wrote: > Visitwww.sicilianidoc.itto give it a try. > very nice. i also noted you took the other comments under advisement and corrected the minor ui issues you had. good job Antonio :).

[jQuery] Superfish: a way to right-align arrow char?

2007-11-28 Thread jrd
Hello, Is there any way to right-align the > character that indicates a dropdown menu is available? I'm using the vertical menu style and would like all of the > characters on the menu to align along the right hand side of the menu, while keeping the text of each link aligned along the left hand

[jQuery] Re: Our New (and first) Ajax E-Commerce project using jQuery

2007-11-28 Thread Jack
Hi Antonio, I believe that a shopping cart can be designed as all vino items starting with 0 quantity. Then by adjusting numbers, behaviour should mimic a spreadsheet. Please, see a delivery eaxmple at www.local-service.net . Click on Tab Dine,...& Delivery, then on Delivery button and click on

[jQuery] Re: Superfish, IE Problems

2007-11-28 Thread cromeis
> Anyway, I've got the menus working the way I want in Firefox, but > can't get them to work quite as well in IE 6 & 7. The two problems > I'm facing in IE 6/7 is that the third level menus are either too far > to the left or right. Also in IE 7 the hover (darker green) extends > past the menus

[jQuery] Re: retrieve text from selected option of select

2007-11-28 Thread Karl Swedberg
Hi Shelane, Try this: $('option:selected').text(); Cheers, --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 28, 2007, at 6:47 PM, Shelane wrote: getting the value is easy. how do I get the text (what displays to the user) of the selected option

[jQuery] retrieve text from selected option of select

2007-11-28 Thread Shelane
getting the value is easy. how do I get the text (what displays to the user) of the selected option?

[jQuery] Re: how to know which radio button is checked?

2007-11-28 Thread Josh Nathanson
My understanding is that the clicked radio button is always checked, unless you are doing some voodoo; thus, the only thing that's useful is the value of the checked button. The value tells you which one was clicked. This is of course assuming the radio buttons are grouped by name. $("inp

[jQuery] Re: Better way of finding another descendant of an ancestor?

2007-11-28 Thread Wizzud
$(this).parents('.A').find('.findme'); On Nov 28, 10:35 pm, Keith Grennan <[EMAIL PROTECTED]> wrote: > Hi everyone, > > I find myself doing this a lot, and thinking there must be a more > elegant way... > > > > Click me > > > > > > > $("#clickme").bind('click', function() { > > var contain

[jQuery] Re: how to know which radio button is checked?

2007-11-28 Thread Wizzud
If you filter on :checked before binding the click, what happens when the unchecked radio is clicked?! On Nov 28, 2:50 pm, Tim <[EMAIL PROTECTED]> wrote: > try this: > > $("input:[EMAIL PROTECTED]:checked").click(function() { > > }); > > On Nov 28, 8:42 am, "[EMAIL PROTECTED]" > > <[EMAIL PROTEC

[jQuery] Re: how to know which radio button is checked?

2007-11-28 Thread Wizzud
If you filter on :checked before binding the click, what happens when the unchecked radio is clicked?! On Nov 28, 3:33 pm, "KidsKilla .grin! wuz here" <[EMAIL PROTECTED]> wrote: > $("input:[EMAIL PROTECTED]:checked").click(function() { > > }); > or > $("input:[EMAIL PROTECTED]").filter(':check

[jQuery] Re: Make IE 6 Work Like IE 7

2007-11-28 Thread Ralph Whitbeck
Funny up until yesterday I hadn't heard of Dean Edwards IE7 and now I see a second instance of it. Did it pop up somewhere on Digg or something? On Nov 27, 5:19 pm, cfdvlpr <[EMAIL PROTECTED]> wrote: > Does there exist a jQuery plugin to do everything that Dean Edwards > IE7 JS library can do?

[jQuery] Re: Adding jQuery Libary to JSEclipse

2007-11-28 Thread chrismarx
oh, nice, i just saw the standalone part. im downloading it now, anything ill need to do to get jquery support? On Nov 28, 4:24 pm, "Dan G. Switzer, II" <[EMAIL PROTECTED]> wrote: > Chris, > > >thanks, ill look in to that, but for the time being, i develop in java > >with eclipse, and i'd like to

[jQuery] Re: limits using dblclick if too many elements ?

2007-11-28 Thread dehneg
Thanks both of you for trying again. I have also test the php script and it works ! This focus me on the problem. The difference between your code and mine is that I do not insert any space between my span tags : 1234...n-1n I know the code that I have posted was different. I *stupidly* thought

[jQuery] Better way of finding another descendant of an ancestor?

2007-11-28 Thread Keith Grennan
Hi everyone, I find myself doing this a lot, and thinking there must be a more elegant way... Click me $("#clickme").bind('click', function() { var container = $(this).parents('.A'); var findme = $('.findme', container); }); Is there a way to make those two traversals into a single jQ

[jQuery] Re: Tabs / Cluetip conflict?

2007-11-28 Thread mosmanlibrary
thank you! success

[jQuery] Firefox uncaught exception

2007-11-28 Thread Bill
It seems that others have found and been able to work around this problem, but I am not experienced enough with javascript and ajax to fix this. I am somewhat desperate. I have been able to get the jQuery cluetips to work fine in IE. However in Firefox I am getting the "uncaught exception". Er

[jQuery] Re: Our New (and first) Ajax E-Commerce project using jQuery

2007-11-28 Thread Karl Swedberg
Hi Antonio, Your site looks gorgeous! Well done, and congratulations. The lightbox effect is very nice. I have a few suggestions for you: 1. On the main sicilianidoc logo, you're using the image-replacement technique. This is great, but in Firefox, when the link becomes "active" the dotte

[jQuery] Re: Adding jQuery Libary to JSEclipse

2007-11-28 Thread Dan G. Switzer, II
Chris, >thanks, ill look in to that, but for the time being, i develop in java >with eclipse, and i'd like to just keep using that. any other ideas? Aptana *is* a plug-in for Eclipse--which is why I suggested it. -Dan

[jQuery] Re: How do I convert an Array to a Map-Object?

2007-11-28 Thread leepowell
Hi Ben, You can use the extend function: $.extend(arr1, arr2); arr2 is now part of arr1. The difference comes because you are dealing with 2 object literal arrays (objects), and as such have to handle them as objects. Regards Lee benjamin_p wrote: > > > Hi, > > I'm trying to use the $.ge

[jQuery] Tabs 3 Update tab content

2007-11-28 Thread Richard W
Hi There I'm realling ejoying using tabs, especially the ajax content. I would like to know if there is painless way of updating the current tabs content via ajax without using the tabs. For example you view the content of a tab, click on a link within the tab, and the current tabs content updates

[jQuery] Re: Passing extra data to AJAX handler functions

2007-11-28 Thread RobRoy
After I posted my message, I tried that but I want to capture the current value of 'id' at the time of function definition, not a reference to it since it could change by the time the handler gets called. This seems like it should be easy, but I'm kinda confused. How do I capture the value of 'id'

[jQuery] No fullscreen with jQuery Media Plugin

2007-11-28 Thread King Bukkum
Hi All, Hope somebody can help me... I use jQuery Media Plugin (http://malsup.com/jquery/media/) to embed Jeroen Wijering Media Player (http://www.jeroenwijering.com/? item=JW_Media_Player). But when embedding this player with jQuery Media Plugin it doesnt switch to fullscreen. Without embedding

[jQuery] Re: Adding jQuery Libary to JSEclipse

2007-11-28 Thread chrismarx
thanks, ill look in to that, but for the time being, i develop in java with eclipse, and i'd like to just keep using that. any other ideas? On Nov 28, 8:19 am, Giovanni Battista Lenoci <[EMAIL PROTECTED]> wrote: > Hi, I've read this post: > > http://www.aptana.com/forums/viewtopic.php?t=3362 > >

[jQuery] Superfish, IE Problems

2007-11-28 Thread Beau Huber
First off I do have to say thanks for the great menu plugin, its saved a lot of time. Anyway, I've got the menus working the way I want in Firefox, but can't get them to work quite as well in IE 6 & 7. The two problems I'm facing in IE 6/7 is that the third level menus are either too far to the

[jQuery] JSASUploader yet another jQuery+SWF multiple file uploading tool.

2007-11-28 Thread [EMAIL PROTECTED]
Hi everyone, I been working lately in a multiple file uploading library similar in functionality to SWFUpload http://swfupload.mammon.se/ but a little different in approach. Sorry for the cross posting, but since I'll be using jQuery for it I thought I should post it here too. You can read more an

[jQuery] Re: Vexed with SuckerFish & Flash

2007-11-28 Thread Jay Fallon
Turns out that the swfobject config was wrong to begin with, thus it was causing multiple problems. Both scripts, swfobject.js and superfish.js are able to work seamlessly and on top of that, swfobject.js will not cause any conflicts, and still perfom flash detection, if you wrap it in a factory f

[jQuery] Only number

2007-11-28 Thread Lourenço
Hello, i'm working in a automatic validation for forms. Ok, but the problem is how can i allow only numbers in a input? or, numbers and "."? or only alpha caracters, you know? i need allow and deny what i want! i found a plugin, called jQuery AlphaNumeric, but it doesn't allow "delete", ctrl + v

[jQuery] Re: jQuery.ajax POST is getting a 411 error.

2007-11-28 Thread Adam Greene
hey guys, do you think this should be posted as a bug? The method jQuery.get(...), within the jquery library (1.2.1) sometimes sets data to null. I've only noticed the behavior in firefox with nginx as the server (it boots that request right quick!). Thanks, Adam On Nov 13, 10:25 am, "[EMAIL

[jQuery] Re: Problem with Jcarousel in IE

2007-11-28 Thread Josh V
try specifying a width on your .jcarousel-clip selector in your jquery.jcarousel.css file On Nov 22, 2:14 pm, Jaxx <[EMAIL PROTECTED]> wrote: > Hello all, > > A friend has asked me to sort their website since the their old web > designers screwed it up, they are usingjcarouselon the main page, in

[jQuery] Re: An important parent bug

2007-11-28 Thread [EMAIL PROTECTED]
It's an inexisten div. I wanna create a window that contains that div. I think that the error is in a jQuery function calls 'clean'. I must debug first. On 28 nov, 18:19, Wizzud <[EMAIL PROTECTED]> wrote: > $j(') // this creates the div element >.ventana() // this gets the jQuery object of th

[jQuery] how append part of xml response from ajax to dom ?

2007-11-28 Thread Artur
Hi, i was searching but i didn't find working solution. I've got xml document and i like to extract part of it and append to one element in dom tree. xml: 1 Trusty name of button 2 Trusty2 name of button 2 and i need to retrieve data betwwen and tags which are valid html tags - with js

[jQuery] Re: getting height of frameset window

2007-11-28 Thread brian.tully
bump! :) On Nov 26, 9:16 pm, Phil Glatz <[EMAIL PROTECTED]> wrote: > I'm trying to get the height of the enclosing frameset window in a > page that is using traditional framesets. I am in a function called by > the lower frame. I've tried the dimension plugin, and $ > (window).outerHeight() is re

[jQuery] Re: cluetip: opening tips from non cluetip elements

2007-11-28 Thread PJ
Karl I had tried that. It almost works but there were two issues: 1) The tip loads up (with positionBy: 'click' and 'mouse') at the lowest point of the page (i.e. the last element on the page - not anchered to bottom of page) 2) Repeating the $('#aParticularElement').trigger(click); command does

[jQuery] uncaught exception: Permission denied to get property HTMLDocument.getElementsByTagName

2007-11-28 Thread [EMAIL PROTECTED]
I have run into an issue working with Iframes. I am manipulating the content inside an IFrame with JQuery, and this works perfectly fine when the source document inside the IFrame is a local document. However, when I try to use a document in a different domain I get the following error: uncaught

[jQuery] Re: Animation Problems

2007-11-28 Thread datiecher
Thanks a lot for your reply, Karl! Yeah, I'm aware about the callback option on the function but this would not be the ideal solution in my case. I want to stop all my code from being executed while the animation is running, not only a portion of it. And the only way I thought about it was using

[jQuery] Re: Problem with jQuery plugin: validation

2007-11-28 Thread edav
On 27 nov, 16:22, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > edav schrieb:> Hi. > > > First of all thanks for the great work! I am using the jquery > > validate plugin and it works great in safari, firefox and ie7 but in > > ie6 it has a problem in line 1222, its the url validation regex. If I

[jQuery] Re: how to know which radio button is checked?

2007-11-28 Thread KidsKilla .grin! wuz here
$("input:[EMAIL PROTECTED]:checked").click(function() { }); or $("input:[EMAIL PROTECTED]").filter(':checked').click(function() { }); -- Максим Игоревич Гришаев, AstroStar.ru

[jQuery] Re: Help making a table resizable with jQuery UI

2007-11-28 Thread Tim
here's another question for the group. my table is long. i can resize, but i would also like to be able to scroll vertically. when i put in overflow:auto instead of hidden, it seems to work. then i scroll and the resize handle scrolls with the table. how do i get it to stay put on the bottom

[jQuery] Re: Scan html variable content

2007-11-28 Thread sawmac
> I have a question, I think this is a small things, but I don't know > the answer. > > I have a variable: > var myVar = 'You must fill class="field">Fields...'; var myVar = 'You must fillFields...'; if ($(myVar).hasClass('css-error')) { // yes it has the css-error class } .hasClass is new in

[jQuery] Scroll effect

2007-11-28 Thread Gerson Goulart
Hey there, Someone know how to do this mouseover scroll efect (in playlist) using jQuery: http://www.flashloaded.com/flashcomponents/flvplayerpro/example1.html Thanks! Gerson.

[jQuery] Problems loading images into WYMeditor using livequery

2007-11-28 Thread Hydro007
Hi, I'm using a modified version of WYMeditor to load an external image dialog into the Wymeditor instance using AJAX. To connect the dialog to WYMeditor, I use the livequery plugin. When adding the first image to the content of the WYMeditor instance, everything works just fine. But when I try t

[jQuery] IE issue with .ajax()

2007-11-28 Thread Ryan
Anyone run into an "Error: Could not complete the operation due to error 80020101." when doing an $.ajax call in IE? It works in FF/OP just fine. The call is as follows and is triggered via an onchange() event from a dropdown: $.ajax({ type: "POST", cache: false, url: "d

[jQuery] Re: how to know which radio button is checked?

2007-11-28 Thread Tim
try this: $("input:[EMAIL PROTECTED]:checked").click(function() { }); On Nov 28, 8:42 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I have two radio buttons, user can choose one of them, when it is > clicked, it will trigger some function calls, now, how to know which > radio button is

[jQuery] Re: how to know which radio button is checked?

2007-11-28 Thread [EMAIL PROTECTED]
jQuery 1.2.1: $("input:checked[type='radio'][name='rb_meas']"); On Nov 28, 2:42 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I have two radio buttons, user can choose one of them, when it is > clicked, it will trigger some function calls, now, how to know which > radio button is selecte

[jQuery] Re: An important parent bug

2007-11-28 Thread [EMAIL PROTECTED]
I have been debugging jQuery code, and I find where seems to be the "bug" (i think is a bug). Is in clean function (line 765 of jQuery). In line 783 a variable is created: div = doc.createElement("div") In line 813 jQuery do: div.innerHTML = wrap[1] + arg + wrap[2]; where "wrap" is an Array 1

[jQuery] Re: Help making a table resizable with jQuery UI

2007-11-28 Thread Tim
nevermind. i needed to put in an overflow: hidden statement. for the record the code below worked, where resizable.css is flora.resizable.css plus the first line of flora.css. also, i am only resizing the south direction. $(document).ready(function(){ $("#example").resizable(); }); O

[jQuery] Re: DateJS: Robust Date manipulation library

2007-11-28 Thread Chris Jordan
that's pretty dang cool. I like the syntactic sugar. I was amazed that for all it's coolness when I entered "tomorrow at 8:15PM" that it understood that as tomorrow at 8:15AM... it ignored my AM/PM designation! It only works off of a 24 hour clock. That's a little disappointing, but not so much as

[jQuery] Re: Validation with Jorn's Validation Plugin - zero

2007-11-28 Thread Web Specialist
Thanks Jörn. I already do this to validate 2 required fields with different values between. I'll try... Cheers 2007/11/28, Jörn Zaefferer <[EMAIL PROTECTED]>: > > > Web Specialist schrieb: > > Hi all > > > > I have to validate a form with required fields. Super easy with Jorn's > > Form Validatio

[jQuery] Re: DateJS: Robust Date manipulation library

2007-11-28 Thread Jörn Zaefferer
Erik Beeson schrieb: Hello all, This came through my feed reader this morning, and I thought it looked like the kind of thing jQuerians might enjoy: http://www.datejs.com/ It's a Date library with lots of parsing capabilities and jQuery style chainable syntactic sugar. It's ~25k minified (

[jQuery] Re: Validation with Jorn's Validation Plugin - zero

2007-11-28 Thread Jörn Zaefferer
Web Specialist schrieb: Hi all I have to validate a form with required fields. Super easy with Jorn's Form Validation Plugin. But how to avoid user to insert number 0(zero) in that fields? You can write your own validation methods: http://docs.jquery.com/Plugins/Validation/Validator/addMetho

[jQuery] Re: problems about jquery.validate

2007-11-28 Thread Jörn Zaefferer
Jacky Chen schrieb: Hi, submit is called after remote validation.it is not good for user experience.it should just update the just field validation info. Now, I didn't get that one. Try again? and another problem is that i can't define the nam

[jQuery] Re: Our New (and first) Ajax E-Commerce project using jQuery

2007-11-28 Thread polyrhythmic
I like it, very clean. Another reason I should learn Italian - the vino! Charles On Nov 28, 1:06 am, resetstudio <[EMAIL PROTECTED]> wrote: > Visitwww.sicilianidoc.itto give it a try. > > It's developed using php and massive jquery and the javascript source > is not yet packed, so you can read

[jQuery] SimpleModal Question

2007-11-28 Thread Frank Peterson
When I try to click a button with the SimpleModal Plugin it gives me the following error $('#basicModalContent').modal is not a function instead of showing the hidden div. http://www.w3.org/1999/xhtml";> $(document).ready(function () { $('#basic').click(function (e) {

[jQuery] Re: Scan html variable content

2007-11-28 Thread Wizzud
Depends how accurate you need to be. var hasCssError = myVar.indexOf('css-error') > -1; will set hasCssError TRUE if the text 'css-error' exists in your myVar variable. If that's enough, without needing to test specifically for class="css- error", then there you go. Otherwise just extend the te

[jQuery] Re: limits using dblclick if too many elements ?

2007-11-28 Thread Wizzud
Works fine for me too (5000 elements). jQuery v1.2.1 Win XP : FF 2.0.0.10, IE7, Safari 3. Opera 9.23 acts up on double clicks, showing context menu and then incrementally selecting the span, the line, document below, whole document, etc, but it's a case of getting the double click to register, rat

[jQuery] Re: how to know which radio button is checked?

2007-11-28 Thread Josh Nathanson
If you want to get the checked value: $("input:[EMAIL PROTECTED]").click(function() { var checkedvalue = $(this).val(); }); -- Josh - Original Message - From: <[EMAIL PROTECTED]> To: "jQuery (English)" Sent: Wednesday, November 28, 2007 5:42 AM Subject: [jQuery] how to know which

[jQuery] Re: how to know which radio button is checked?

2007-11-28 Thread Wizzud
$("input:[EMAIL PROTECTED]").click(function() { if(this.checked){ // it's checked }else{ // it's not checked } }); On Nov 28, 1:42 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I have two radio buttons, user can choose one of them, when it is > clicked, it will trig

[jQuery] Re: An important parent bug

2007-11-28 Thread Wizzud
$j(') // this creates the div element .ventana() // this gets the jQuery object of the just-created div On Nov 28, 9:38 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hello! > > I'm trying to do a window plugin with jQuery, but I have a serious > problem. My code is based on the UI jQuer

[jQuery] Re: DateJS: Robust Date manipulation library

2007-11-28 Thread 1Marc
25k is a lot for Javascript, yes but include it in the bottom of your page and the 25k will be the last to process while not holding your page captive. This works great for anything form related because date entry is usually lower in the page/form. For dates, functionality matters over size. Ma

[jQuery] Validation with Jorn's Validation Plugin - zero

2007-11-28 Thread Web Specialist
Hi all I have to validate a form with required fields. Super easy with Jorn's Form Validation Plugin. But how to avoid user to insert number 0(zero) in that fields? Cheers

[jQuery] Re: Detecting elements with click handlers

2007-11-28 Thread Glen Lipka
Ok, cool, thank you. :) Glen On Nov 27, 2007 12:35 PM, David Serduke <[EMAIL PROTECTED]> wrote: > > This won't work for every javascript library of course but for jQuery > I believe you can use the internal .data() functions to find the > handlers. > > http://docs.jquery.com/Internals/jQuery.dat

[jQuery] Re: Make IE 6 Work Like IE 7

2007-11-28 Thread Bil Corry
Brett wrote on 11/27/2007 11:42 PM: Not that I know of however the last update for that library as in 2005, so either thats a bug on the timestamp, or its too old to continue supporting. I tried using it on a project in Europe, but it would crash the German-localized version of IE6. Sin

[jQuery] Re: Make IE 6 Work Like IE 7

2007-11-28 Thread cfdvlpr
A jQuery plugin would probably save more than a couple kb. His complete script is a whopping 25 kb.

[jQuery] Re: limits using dblclick if too many elements ?

2007-11-28 Thread Suni
Im sorry to let you know: I just tested with your exact code (creating 5000 siteSelector span- elements with PHP) and it still works fine for me, the message gets appended immediately. Tested with jquery 1.2.1. I suggest you first try with another completely different computer. It may sound far

[jQuery] Re: Animation Problems

2007-11-28 Thread Karl Swedberg
Hey there, the last argument for .animate is a callback function that will start only when the animation is finished. For example: $("p").animate({"height": "toggle", "opacity": "toggle"}, "slow", function() { alert('animation is finished'); }); On Nov 28, 2007, at 8:08 AM, datiecher

[jQuery] Re: cluetip: opening tips from non cluetip elements

2007-11-28 Thread Karl Swedberg
Hi PJ, Maybe you can give this a try? [using pseudo-code] ... Bind your cluetips to elements as usual: $('someelements').cluetip({options: values}); Then, if you want to open a particular cluetip, you might be able to use .trigger() : $('another-element').someEvent(function() { $('

[jQuery] Re: Tabs / Cluetip conflict?

2007-11-28 Thread Karl Swedberg
Hi there, I'm not sure, but this sounds like the more general problem of events not being bound to elements that are inserted into the DOM (via ajax or plain DOM manipulation). Here is a FAQ topic that should help. http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_wor

[jQuery] how to know which radio button is checked?

2007-11-28 Thread [EMAIL PROTECTED]
I have two radio buttons, user can choose one of them, when it is clicked, it will trigger some function calls, now, how to know which radio button is selected at this time? thanks. $("input:[EMAIL PROTECTED]").click(function() { });

[jQuery] Tabs / Cluetip conflict?

2007-11-28 Thread mosmanlibrary
Using Jquery UI Tabs / Tabs 3 - the Ajax Tabs implementation... working great, because each tab's content calls RSS feeds, etc, and is heavy... But having difficulties implementing Cluetip plugin within Tab content... Cluetip works fine when called at the top of the 'master' HTML document, but d

[jQuery] Re: Adding jQuery Libary to JSEclipse

2007-11-28 Thread Giovanni Battista Lenoci
Hi, I've read this post: http://www.aptana.com/forums/viewtopic.php?t=3362 But (maybe for my low-level english) I didn't understand how to use this functionality. Actually I'm using easyeclipse, and all my project are "PHP project". If I understood the post it says that to use this functionali

[jQuery] Re: Vexed with SuckerFish & Flash

2007-11-28 Thread Jay Fallon
Yes, that is my issue, but we're using swfObject for the flash piece. It had wmode=transparent as a parameter, but now I believe that it wasn't configured correctly as it was interferring with two other scripts I had on the page (show/hide & tooltops) but only in IE6, so I was experimenting with j

[jQuery] Animation Problems

2007-11-28 Thread datiecher
Hey there, folks! I'm a new JQuery and JS user in general. Due to that, my problem should be simple to solve but I do not have the knowledge to solve it myself... The thing is, I'm using JQ's animate function to animate some elements on my app. The funtion by itself works great but I have one pro

[jQuery] Re: problems about jquery.validate

2007-11-28 Thread Jacky Chen
Hi, submit is called after remote validation.it is not good for user experience.it should just update the just field validation info. and another problem is that i can't define the name of the data that to be validation.in remote it is data:{value:value}.In my exists validation program,it not rec

[jQuery] An important parent bug

2007-11-28 Thread [EMAIL PROTECTED]
Hello! I'm trying to do a window plugin with jQuery, but I have a serious problem. My code is based on the UI jQuery Dialog, but I need to imlement the windows with canvas and a lot of functions. I call my function: $j('').html(); } And all go well. BUT! When I call my function $j(').ve

[jQuery] Re: Eval error with Firefox 3

2007-11-28 Thread Brett
Stable in which way? Memory usage and crashing wise? On Nov 28, 11:22 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I'm sure by the time Firefox 3 is released to the general public this > issue will be resolved. Having said this: Firefox 3 is more stable > that Firefox 2.0.0.10 on my compu

[jQuery] Re: fadeout a div after a few seconds

2007-11-28 Thread guix69
Damn it I was sure I had tried something like that !:) And THANKS because it's working now, so for those who are interested and who will find this page, the winner is ... var pdoptions = { target: '#pdresult', success:function() {fadeoutdiv('#pdresult1')} }; with function fadeoutdiv(div) {

[jQuery] Scan html variable content

2007-11-28 Thread Cati
Hello. I have a question, I think this is a small things, but I don't know the answer. I have a variable: var myVar = 'You must fillFields...'; How can I decide: Is there a "css-error" class in myVar? Thanks Cati

[jQuery] Re: Make IE 6 Work Like IE 7

2007-11-28 Thread Brett
Not that I know of however the last update for that library as in 2005, so either thats a bug on the timestamp, or its too old to continue supporting. the only reason you might want to do this is to save a couple of kb of having a plugin to do the work instead of a seperate library On No

[jQuery] Re: 1.2.2

2007-11-28 Thread KidsKilla
Great! And one more question, whether in this release these tickets are included? (Charset in getScript) http://dev.jquery.com/ticket/1931 http://dev.jquery.com/ticket/1934 or it's just a bugfixes? On Nov 27, 8:57 pm, "John Resig" <[EMAIL PROTECTED]> wrote: > http://docs.jquery.com/Frequently_A

[jQuery] Re: cluetip: opening tips from non cluetip elements

2007-11-28 Thread PJ
I have been playing with this some more overnight. I have some more comments that make my request for support clearer... Basically I want to be able to open/close tips whenever I want - but I want to be able to open them by specifying the id of the span (as detailed in code in previous post). So

[jQuery] Our New (and first) Ajax E-Commerce project using jQuery

2007-11-28 Thread resetstudio
Visit www.sicilianidoc.it to give it a try. It's developed using php and massive jquery and the javascript source is not yet packed, so you can read the source and give me some (hopefully positive) comments. It's crossbrowser (ie 6 supported, ps: there is a bug in jQuery with hover event in ie6 u

[jQuery] Re: Eval error with Firefox 3

2007-11-28 Thread [EMAIL PROTECTED]
my temporary solution : eval.call(window, data) to eval(data) in jquery.js in function globalEval Any idea, how to bypass around this bug more correctly until fox 3 release ? On Nov 28, 2:22 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I'm sure by the time Firefox 3 is released to the

[jQuery] Re: IIS permission problem Re: Can $(document).ready() be put into a separate JS file?

2007-11-28 Thread [EMAIL PROTECTED]
hehe, permissions would have been my second choice. My coding mantra: If in doubt, check permissions! On Nov 28, 4:10 am, Stephen <[EMAIL PROTECTED]> wrote: > Hello, > It looks like I had a very peculiar IIS permission problem just for > jquery.js. Very weird. I fixed the permissions on that f

[jQuery] Help making a table resizable with jQuery UI

2007-11-28 Thread Tim
i would like to make a table resizable. i thought that i could achieve this with jquery ui. so far, i'm not doing so well. examples show a div, textarea, and image. i thought that i could put the table inside the div, but that didn't work. any ideas? thanks.

[jQuery] Re: Events double firing?

2007-11-28 Thread Wizzud
I'm afraid we can't get at sites on your localhost! Have you tried setting your mouseover/mouseout events on the image rather than the div? (and you can simply return false from the handlers to prevent default and bubbling). I suspect that, for example, when you move off, the image kicks off a mo

[jQuery] Re: Changing the state of multiple checkboxes - looking for comments on this...

2007-11-28 Thread Wizzud
An alternative, but *only* if #checkall is a unique id (which it should be)... // Add click handler to all checkboxes, storing all bar the one in header var chkEach = $(':checkbox').click(updateStates).not('#checkall'); // Handle any checkbox click, set others and buttons as needed function upda

[jQuery] Re: Eval error with Firefox 3

2007-11-28 Thread Klaus Hartl
On 28 Nov., 01:22, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I'm sure by the time Firefox 3 is released to the general public this > issue will be resolved. Having said this: Firefox 3 is more stable > that Firefox 2.0.0.10 on my computer. Yeah! Firefox 2 keeps freezing on my Mac whereas F

[jQuery] Re: Slightly OT: Datejs - jQuery-like date chaining

2007-11-28 Thread Klaus Hartl
On 28 Nov., 02:17, Guy Fraser <[EMAIL PROTECTED]> wrote: > Just spotted this via Ajaxian: > > http://www.datejs.com/ > > It's got jQuery-like syntax for working with dates: Reminds me pretty much of Rails: 3.days.ago ... To have that in JS is pretty neat. --Klaus