[jQuery] Re: Simultaneous $.load() calls wait for eachother

2008-12-11 Thread Robin Speekenbrink
That's the weird thing about the calls: it doesnt matter what i do on my server side ( ie. a sleep-command) the second call only renders when the firstcall has returned data... ? And about the ajaxSetup part: the async is by default already true, so all calls should be called async-ed... I'm at

[jQuery] jquery IE problem

2008-12-11 Thread mysterbx
I have a test site, and everything works so smooth, but ie makes the animations s ugly... please help me out, here's my script: http://www.bxsearch.com/x/jquery2.js and the test is here: http://www.bxsearch.com/x/ what is wrong with it?

[jQuery] Re: xml find element with this attribute value

2008-12-11 Thread Crazy-Achmet
Hey, i couldn't get it to work! This is my code to get all the event nodes. $(xml).find('event').each(function(){ var name = $(this).attr('name'); $('option

[jQuery] Re: please wait while loading...

2008-12-11 Thread Kevin Thorpe
fabrice.regnier wrote: Hi to all, i have a nice gif please wait while loading... and i'd like to show it when i click on a button. Is there a nice jquery way to do it ? do i need a plugin ? $(#Idsubmit).click(function () { -- start showing the gif

[jQuery] Re: Prefixing all href attributes (or how to get .attr('href') to return a string)

2008-12-11 Thread Kris
Many thanks Karl, I never would have got there without help. On Dec 10, 5:10 pm, Karl Swedberg [EMAIL PROTECTED] wrote: Hi Kris, The problem is that $(this) is referencing something other than the   link at that point -- either some enclosing method or the window   object. You can get

[jQuery] Re: vertical jcarousel + galleria + IE = bug

2008-12-11 Thread dopeless
ok, i've got an answer. to make it work propertly in IE, you have to define scroll option. In my case it have hade the value 2. On Dec 10, 7:39 pm, dopeless [EMAIL PROTECTED] wrote: Hi, people, i've got such a bug: i'm trying to implemen Galleria together with Jcarousel. It works fine in

[jQuery] Re: Setting background image does not work...

2008-12-11 Thread Kris
I see, the path is not relative to the css file (../images/banner/ default.gif) that first set background, its relative to root (images/ banner/custom.gif). Many thanks for confirming I had correct syntax, one of those where you can bang your head aginst the walls for days!!

[jQuery] Re: jQuery.uploader released: Flash based jQuery uploader

2008-12-11 Thread rernens
Move to Flash Player 10 just to see if it would change something. No changes. Firefox 3 crashes. It seems that the plugin does not handle properly the 404 return code from the server. Will try on Windows with firefox and IE7 and 8.

[jQuery] Re: jquery.css strips out my dashes in IE

2008-12-11 Thread MaTi
thanks mate :) works fine On 10 Dez., 19:34, ricardobeat [EMAIL PROTECTED] wrote: You have to use the camelCase variants when dealing with javascript: textAlign, backgroundColor, etc; On Dec 10, 2:41 pm, MaTi [EMAIL PROTECTED] wrote: Hi guys, i wrote the following code:              

[jQuery] Code migration from js to jquery

2008-12-11 Thread m.ugues
Is there an elegant way to migrate this piece of code var innerDocument = parent.document.getElementById (indexIframe).contentDocument; alert(innerDocument.getElementById(cab).value); with jQuery? I cannot get it :( Thanks, kind regards Massimo Ugues

[jQuery] Re: Code migration from js to jquery

2008-12-11 Thread Alexandre Plennevaux
try this: var innerDocument = $('#indexIframe).get(0).contentDocument; alert($(#cab, innerDocument).val()); On Thu, Dec 11, 2008 at 12:48 PM, m.ugues [EMAIL PROTECTED] wrote: Is there an elegant way to migrate this piece of code var innerDocument = parent.document.getElementById

[jQuery] Re: Code migration from js to jquery

2008-12-11 Thread Alexandre Plennevaux
in case it doesn't help, here is aa blog post that describes (read comments) http://simple.procoding.net/2008/03/21/how-to-access-iframe-in-jquery/ On Thu, Dec 11, 2008 at 1:00 PM, Alexandre Plennevaux [EMAIL PROTECTED] wrote: try this: var innerDocument =

[jQuery] Re: Prefixing all href attributes (or how to get .attr('href') to return a string)

2008-12-11 Thread Kris
Okay the only issue I'm facing now and its not strictly a JQuery one, its more an IE one... HREF's like 'images/trucks.jpg' should be prefixed with 'cms/' giving 'cms/images/trucks.jpg'. Firefox and Safari are okay, I get URLs like: http://www.mydomain.com/inprog/cvs/cms/images/trucks.jpg But

[jQuery] Re: Prefixing all href attributes (or how to get .attr('href') to return a string)

2008-12-11 Thread Kris
Own workaround: if(document.domain=='localhost') { var root_url = 'http://localhost/ project/'; } else { var root_url = 'http://www.mydomain.com/inprog/ project'; } $(#content_main a:not(.external)).attr('href', function() { orig_url = $(this).attr('href');

[jQuery] getJSON invalid label

2008-12-11 Thread jrutter
What am I doing wrong? Im able to submit the request and get a response, but in Firebug it says invalid label and the alert doesnt show up. here is my code: $(form).submit(function() { $.getJSON(http://api.nytimes.com/svc/movies/v2/reviews/ search.json?api-

[jQuery] Beginner question about toogeling a status

2008-12-11 Thread heohni
Hi, this is my first post, I hope I do everything right! I have a list of users and for each user I have a little img showing the actual status which is eather - active - in-active - active but no login On click on this little img icon, I want to call a ajax php script which toogles the

[jQuery] Re: Beginner question about toogeling a status

2008-12-11 Thread heohni
Hi, is there someone who can give me a hand with that topic? Please? On 11 Dez., 16:30, heohni [EMAIL PROTECTED] wrote: Hi, this is my first post, I hope I do everything right! I have a list of users and for each user I have a little img showing the actual status which is eather - active

[jQuery] Re: hover event going to infinite loop

2008-12-11 Thread Sridhar
that didn't work. On Dec 11, 1:00 am, sad1sm0 [EMAIL PROTECTED] wrote: try unbinding before attaching the hover event $('#divEmpDetails').unbind().hover();//fill in the gaps Now that I look at your post I realize that's what fixed my gallery issue.  Looks like a similar problem.  Maybe

[jQuery] Re: Click Handler Not Returning False in IE7 Due to getScript()?

2008-12-11 Thread Joe
Strange, I get the jumpy response On Dec 10, 6:15 pm, donb [EMAIL PROTECTED] wrote: Seems perfectly fine to me.  IE version 7 On Dec 10, 5:32 pm, Joe [EMAIL PROTECTED] wrote: Any leads on this? On Dec 6, 2:01 pm, Joe [EMAIL PROTECTED] wrote: Go here:

[jQuery] Re: a == b, but I don't understand why it doesn't...

2008-12-11 Thread ricardobeat
jQuery selectors are only instructions processed by other functions.. so it depends on what you're doing. In this case you would be creating one less jQuery object and that can be significant less overhead. On Dec 11, 5:32 am, nachocab [EMAIL PROTECTED] wrote: Thanks Richard, That's a great

[jQuery] Re: hover event going to infinite loop

2008-12-11 Thread brian
It's not an infinite loop. Your cursor is passing over the div and back several times, causing the hover states to toggle. Try this: div id=divEmpDetails style=border:1px solid #000; Now, run your cursor in and out of the div several times. The toggling should run for a bit, then stop. The fix

[jQuery] Top 5 Movies of the Box Office Watch Online

2008-12-11 Thread 24 Hrs Movies
Top 5 Movies of the Box Office http://newmegamovies.blogspot.com/ 1. Four Christmases Reese Witherspoon, Vince Vaughn, Mary Steenburgen 2. Twilight Kristen Stewart, Robert Pattinson, Billy Burke 3. Bolt John Travolta, Miley Cyrus, Susie Essman 4. Australia Nicole Kidman, Hugh Jackman

[jQuery] Top 5 Movies of the Box Office Watch Online

2008-12-11 Thread 24 Hrs Movies
Top 5 Movies of the Box Office http://newmegamovies.blogspot.com/ 1. Four Christmases Reese Witherspoon, Vince Vaughn, Mary Steenburgen 2. Twilight Kristen Stewart, Robert Pattinson, Billy Burke 3. Bolt John Travolta, Miley Cyrus, Susie Essman 4. Australia Nicole Kidman, Hugh Jackman

[jQuery] Re: jQuery reloads all JS files on show()

2008-12-11 Thread pbergqvist
I experience similar problems. I'm using a modal dialog window in which we load content from a separate page. In the html that gets loaded we include three additional js scripts. These three scripts are always retrieved without cache because of the timestamp that is added to the js-file. jQuery:

[jQuery] Problems with Validate's errorPlacement

2008-12-11 Thread knal
Hi there, I'm using Validate on my website, but i'm having difficulties with the errorPlacement. In simple a part of my form looks like this: label for=emailE-mail/labeldiv class=warn*/div input type=text name=email id=email / Validation works fine, but i can't get the message

[jQuery] newbie: unfold form on checkbutton

2008-12-11 Thread frits1607
Hello, I need to make a dynamic form. This morning I found jquery and this looks like the tool I need. My first challenge is unfolding part of a form on a checked checkbutton. The code I wrote does not work. Can someone point me in the right direction? script type=text/javascript

[jQuery] JSONP and callback function name

2008-12-11 Thread jtuchscherer
Hi there, I am about to write a web service client with JQuery and I ran into a pretty weird problem. For some web service calls I need to authenticate a user. Part of the authentication is to create a MD5 checksum of all request parameters plus values plus a secret. The server than validates

[jQuery] [Validate] Problems with errorPlacement before element

2008-12-11 Thread knal
Hi there, I'm using jQuery's Validate, which works great, but i seem to be unable to define the place where to place the error message. Extremely simplified, my form looks like this: label for=emailE-mail/labeldiv class=warn*/div input type=text name=email id=email value= / I'd like my

[jQuery] Ajax parse error in IE

2008-12-11 Thread Chris M
Hi all, I really love jQuery and am running into my first real issue with it, regarding AJAX callbacks in Internet Explorer. I have a Python script configured that returns a string of text that I want to inject into an HTML page. My AJAX call looks like this (reduced to essentials): $.ajax( {

[jQuery] Re: jQuery reloads all JS files on show()

2008-12-11 Thread pbergqvist
Hi, I experience the exact same problem. I have a modal dialog window which content is loaded dynamically from a separate page. That page includes three additional scripts. These three scripts are never cached due to a timestamp added after the file name.. Sample jQuery code: $(div

[jQuery] Re: jquery IE problem

2008-12-11 Thread Hobo
First impressions from a user end is that the site is super slow. (I'm Firefox 3 on Ubuntu). Your page load time for me was around 11 seconds. Just by enabling firebug, I found an error in one of your JS files: [Break on this error] /divdiv class='newdls1'a alt='Resid...

[jQuery] .parent().parent() ... better way to get parents' parent

2008-12-11 Thread Joel Taylor
Is there a better way to get a parents parent than to just do repeated '.parent()' ??

[jQuery] Potential Bug when .append (ing) html and then selecting on it?

2008-12-11 Thread sironf...@msn.com
I have the follow HTML markup h4 class=filteredResultsTitleInformation Sources/h4 ul style=display: block; li.../li li.../li li.../li /ul I'm trying to create show/hide buttons against the 'Information Sources' h4 element to toggle the ul element to disappear/ reappear. So far I

[jQuery] Re: jQuery + jQuery.form ajaxForm file upload problems

2008-12-11 Thread cas...@gmail.com
Thank you man, save my day! On 12 nov, 01:58, Sam Coughlin [EMAIL PROTECTED] wrote: Hi, Sam again here. Just thought I'd let everyone know I had to change the headers to be content type HTML and it worked fine. On Nov 12, 4:02 pm, Sam Coughlin [EMAIL PROTECTED] wrote: Hi Mike, thanks

[jQuery] Change the data attribute of flash object - works in FF, not IE

2008-12-11 Thread VaughanJ
Arrgh! Please can someone help me out with a jQuery/flash issue. I have a page with a content region on the left and a flash movie on the right. The flash object calls in images from an XML file, using code like this (generated using swfobject.js):

[jQuery] Problems with Validate's errorPlacement

2008-12-11 Thread knal
Hi there, I'm using Validate on my website, but i'm having difficulties with the errorPlacement. In simple a part of my form looks like this: label for=emailE-mail/labeldiv class=warn*/div input type=text name=email id=email / Validation works fine, but i can't get the message

[jQuery] Re: getJSON invalid label

2008-12-11 Thread Eric Garside
Using the callback argument in the getJSON function usually won't work unless the recipient is setup to use jsonp. Basically, jQuery is replacing your callback parameter before it sends the request. So you see that you're requesting:

[jQuery] externalizing script seems to break append()

2008-12-11 Thread Brian
When I move my script to an external file, where before it was between script tags in head, append(div...blah.../div) installs its text argument as text within the DOM. When the script was internal, the text argument was properly installed as markup. Any thoughts on what I'm doing wrong or

[jQuery] Re: Prefixing all href attributes (or how to get .attr('href') to return a string)

2008-12-11 Thread Hobo
Honestly, it might be easier to just overload the links onclick events, instead of worrying about doing the appendation to everything. $(#content_main a).click(function(){ window.location = 'cms/' + $(this).attr('href'); }); On Dec 11, 9:11 am, Kris [EMAIL PROTECTED] wrote: Okay the only

[jQuery] Re: jQuery reloads all JS files on show()

2008-12-11 Thread pbergqvist
(This message might cause a duplicate) Hi, I experience the exact same problem. I have a modal dialog window which content is loaded dynamically from a separate page. That page includes three additional scripts. These three scripts are never cached due to a timestamp added after the file name..

[jQuery] Latets Bollywood Movies

2008-12-11 Thread 24 Hrs Movies
Maharathi http://newmegamovies.blogspot.com/2008/12/maharathi.html And More Top 5 Movies of the Box Office Watch It OnLine 1. Four Christmases Reese Witherspoon, Vince Vaughn, Mary Steenburgen 2. Twilight Kristen Stewart, Robert Pattinson, Billy Burke 3.

[jQuery] Re: jQuery reloads all JS files on show()

2008-12-11 Thread pbergqvist
Wow. Truly sorry about the spam. This is my first post ever on google groups and I've posted this message a bunch of times without it showing on the page. Again, apologies. // Peter On Dec 11, 6:04 pm, pbergqvist [EMAIL PROTECTED] wrote: Hi, I experience the exact same problem. I have a

[jQuery] Re: externalizing script seems to break append()

2008-12-11 Thread Liam Potter
show us your script Brian wrote: When I move my script to an external file, where before it was between script tags in head, append(div...blah.../div) installs its text argument as text within the DOM. When the script was internal, the text argument was properly installed as markup. Any

[jQuery] Re: Cross domain Ajax without Proxy

2008-12-11 Thread howa
On 12月11日, 上午2時32分, ricardobeat [EMAIL PROTECTED] wrote: I believe you have already answered that to yourself but was hoping for a misteryous miraculous solution right? :) No, there isn't, you'll have to do it server-side. Or if you're not playing with the remote page's content use an

[jQuery] Re: Prefixing all href attributes (or how to get .attr('href') to return a string)

2008-12-11 Thread Karl Swedberg
Hi Kris, jQuery should be normalizing the href attribute when you use .attr('href'). Not sure why it's not working for you. In any case, you should be able to do this a bit more easily: var path_prefix = '/cms/'; $('#content_main a:not(.external)').attr('href', function() { return

[jQuery] Re: xml find element with this attribute value

2008-12-11 Thread ricardobeat
$(xml).find('event[test]').each(function(){ var name = $(this).attr('name'); $('option value='+name+'/option').html(name).appendTo ('#select_event'); }); or $(xml).find('event').each(function(){ if ( $(this).attr('test') ) { // do something special } else { var name =

[jQuery] Re: Simultaneous $.load() calls wait for eachother

2008-12-11 Thread ricardobeat
By what George explained, irrespective of what you are doing with it server-side, one call will only be 'answered' after the other has finished, and that will be your server refusing to answer both at the same time. On Dec 11, 6:06 am, Robin Speekenbrink [EMAIL PROTECTED] wrote: That's the

[jQuery] Re: .parent().parent() ... better way to get parents' parent

2008-12-11 Thread ricardobeat
Nope. You can use parents() but that will give you *all* parents up to the body unless you filter() or stop it some other way (you can pass a selector too): div class=wanted div span id=cat/span /div /div $('#cat').parents('.wanted') - ricardo On Dec 11, 2:01 am, Joel Taylor

[jQuery] Re: Top 5 Movies of the Box Office Watch Online

2008-12-11 Thread Bil Corry
JQueryProgrammer wrote on 12/10/2008 11:26 PM: Stop spamming the group with such posts. This is irrelevant here. It's an automated bot, it won't read your reply. It's better to just report either the message as spam via Google Groups, or in the case of a user that only posts spam, report

[jQuery] Re: newbie: unfold form on checkbutton

2008-12-11 Thread Paul Mills
Hi, This selector looks a bit strange $('a#period'). Can you post the relevant HTML code please. Paul On Dec 11, 4:19 pm, frits1607 [EMAIL PROTECTED] wrote: Hello, I need to make a dynamic form. This morning I found jquery and this looks like the tool I need. My first challenge is

[jQuery] Re: Beginner question about toogeling a status

2008-12-11 Thread brian
On Thu, Dec 11, 2008 at 10:30 AM, heohni [EMAIL PROTECTED] wrote: Hi, this is my first post, I hope I do everything right! Most of us only post questions here when we're doing something wrong ;-) For the moment I toogle only active into inactive. Because I do not know how to send 2

[jQuery] Re: Styling the 2nd table tag above a row

2008-12-11 Thread Paul Mills
Hi, Give the outer table a unique id such as id=outer then use a css style to set bthe border #outer {border:1px solid red;} Not sure why you want to use jQuery? Paul On Dec 11, 5:13 pm, Guy [EMAIL PROTECTED] wrote: Hi, I'm having a dilemma where I need to style the table which encloses a

[jQuery] Re: aspx page not selecting id (yes i am new at this :-)

2008-12-11 Thread MorningZ
Well, to start with this line var $j = jQuery; should be this var $j = jQuery.noConflict(); http://docs.jquery.com/Using_jQuery_with_Other_Libraries On Dec 10, 5:59 pm, ricva [EMAIL PROTECTED] wrote: First time trying jquery.  VS2008, .net 3.5, IE 8 I expected to see the “Hello”, but

[jQuery] NyroModal - open manual in iframe not working

2008-12-11 Thread Info
Hello - I am using the great plug NyroModal. I have it tied to a ajax form submit and when a failed retun comes back I want to span a new NyroModal. Here is the code I am using: $('#chk_login').ajaxForm(function(login_return) { if

[jQuery] Re: Simple FadeIn with Appending

2008-12-11 Thread ksun
$(this).after(span class='field-error'You need to enter a +fieldName+ here./span); What is fieldName, you need get that value from somewhere, before trying to use it. Also the effect is applied only on the object on which it is called, so if your label is hidden then

[jQuery] Re: JSONP and callback function name

2008-12-11 Thread Eric Garside
If you are writing the webservice, why not just have it exclude the callback param, or change the authentication method to not just hash the params sent in? On Thu, Dec 11, 2008 at 3:54 AM, jtuchscherer [EMAIL PROTECTED]wrote: Hi there, I am about to write a web service client with JQuery

[jQuery] Re: Styling the 2nd table tag above a row

2008-12-11 Thread Guy
Paul, I appreciate your help but the reason I want to use jQuery is because I don't have access to the source. I'm trying to style a SharePoint site and many of these tags are auto-generated so I'm limited as to what I can and cannot directly access via a class or id tag. So although I would

[jQuery] Re: Simple FadeIn with Appending

2008-12-11 Thread Eric Garside
The code looks like it should work. What exactly isn't working? On Thu, Dec 11, 2008 at 1:03 PM, ksun [EMAIL PROTECTED] wrote: $(this).after(span class='field-error'You need to enter a +fieldName+ here./span); What is fieldName, you need get that value from

[jQuery] Re: hover event going to infinite loop

2008-12-11 Thread Sridhar
Hi brian, I cannot set the width on the div tag unless the image is separated from the div tag. In my case, the image will be smaller compared to the width. The reason I included both of them in the same div tag is so that when I can hover over the details div. If it is outside the

[jQuery] Re: Click event fires only once with SImpleModal

2008-12-11 Thread Ron
!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html xmlns=http://www.w3.org/1999/xhtml; head id=ctl00_Head1title MeasureResults - Project Wizard /title script src=../scripts/jquery-1.2.6.js type=text/javascript/

[jQuery] Re: SimpleModal container not showing up

2008-12-11 Thread Isaac
Eric, You can see the page at http://www.lacopts.org/dbase/register.php You will see that this doesn't work in any browser (ie, ff, or chrome). Thanks, Isaac

[jQuery] Re: Click event fires only once with SImpleModal

2008-12-11 Thread Ron
So I tested out the page more carefully. I noticed when I do click Help, it does seem to go to the server--implying some sort of partial postback. I substituted the asp control with just html and wired the code to the html. Now it works fine. So you were absolutely right--the problem is it is

[jQuery] Re: SimpleModal container not showing up

2008-12-11 Thread Eric Garside
Isaac, It's a compound of problems. If you've got firebug, and you change position:fixed to position:absolute, you will see the box dead center in the middle of the page (with scrolling). Are you stying the box iteself? Or is this some plugin setting its display attributes? On Thu, Dec 11, 2008

[jQuery] Re: Potential Bug when .append (ing) html and then selecting on it?

2008-12-11 Thread ksun
$(this).children('span a').click(function() This is not allowed, you can only select the immediate children, so you have to do it twice I guess. I am not sure if there is a better way. Also I used toggle function instead of click, that lets you run 2 functions alternatively. Also using

[jQuery] dialog box plugin

2008-12-11 Thread Raghu
Hi, I am looking for jquery plugin which shows dialog box on mouseover event... Dialog box must disappear on mouseout event and reapper on mouseover event. Any idea which plugin to use... Thanks Raghu

[jQuery] Re: Simple way to suppress display of title attribute on hover?

2008-12-11 Thread René
jQuery.data is exactly what I needed! Thanks. On Dec 1, 6:30 pm, Jeffrey Kretz jeffkr...@hotmail.com wrote: A CSS-compliant browser will render the title attribute -- it's probably not the best way to store data. You can use the jQuery.data method instead:

[jQuery] Trouble with extending Object prototype

2008-12-11 Thread Bill
Hi all, I extended the Object object with a method called getKeys() that works like Perl's keys() function -- given a hash, or associative array, the method returns an array containing all keys: Object.prototype.getKeys = function() { var arr = new Array(); for (var s in this) {

[jQuery] Re: hover event going to infinite loop

2008-12-11 Thread brian
I'm sorry, I don't understand your problem. If you cannot set a width on the div then you should probably look at the hoverIntent plugin, which will keep your hover events from firing when the cursor passes over quickly (that is, accidentally). The plugin allows for setting a delay after which

[jQuery] Re: Trouble with extending Object prototype

2008-12-11 Thread Bill
If you know of another way of accomplishing this using jQuery, please let me know! On Dec 11, 11:12 am, Bill bllfr...@gmail.com wrote: Hi all, I extended the Object object with a method called getKeys() that works like Perl's keys() function -- given a hash, or associative array, the method

[jQuery] Re: newbie: unfold form on checkbutton

2008-12-11 Thread frits1607
On Dec 11, 6:47 pm, Paul Mills paul.f.mi...@gmail.com wrote: Hi, This selector looks a bit strange  $('a#period'). Can you post the relevant HTML code please. Paul Paul, It looks like this: a href=# id=timeINPUT TYPE=checkbox NAME=limit VALUE=y/ aIset report period/I div id=showtime

[jQuery] Re: Trouble with extending Object prototype

2008-12-11 Thread Eric Garside
Try: Object.prototype.getKeys = function(){ var arr = []; $.each(this, function(k){ arr.push(k) }); return arr; } On Thu, Dec 11, 2008 at 2:17 PM, Bill bllfr...@gmail.com wrote: If you know of another way of accomplishing this using jQuery, please let me know! On Dec 11, 11:12

[jQuery] Re: hover event going to infinite loop

2008-12-11 Thread Eric Garside
Do you have an example page up somewhere of what the issue is? On Thu, Dec 11, 2008 at 2:12 PM, brian bally.z...@gmail.com wrote: I'm sorry, I don't understand your problem. If you cannot set a width on the div then you should probably look at the hoverIntent plugin, which will keep your

[jQuery] Re: dialog box plugin

2008-12-11 Thread Raghu
Please ignore this mail. ClueTip plugin will solve my problem. Thanks On Thu, Dec 11, 2008 at 2:11 PM, Raghu techhel...@gmail.com wrote: Hi, I am looking for jquery plugin which shows dialog box on mouseover event... Dialog box must disappear on mouseout event and reapper on mouseover event.

[jQuery] Re: Trouble with extending Object prototype

2008-12-11 Thread Bill
Thanks Eric, that's definitely a more jQuery-centric approach. But the Javascript error persists. On Dec 11, 11:24 am, Eric Garside gars...@gmail.com wrote: Try: Object.prototype.getKeys = function(){     var arr = [];     $.each(this, function(k){ arr.push(k) });     return arr; }

[jQuery] Jquery autocomplete with spring MVC

2008-12-11 Thread anny
I have jquery auto complete example working. Trying to integrate with spring MVC. I use InternalResourceViewResolver and SimpleUrlHandlerMapping. I am trying to pass url in autocomplete(url), which is mapped to multiactioncontroller which returns array based on value entered in tex box. But its

[jQuery] Re: Trouble with extending Object prototype

2008-12-11 Thread Eric Garside
Works fine for me. I suspect that there may be some issue with some of your other code somewhere. Try opening a new JS file and using: --- code -- Object.prototype.getKeys = function(){ var arr = []; $.each(this, function(k){ if(k!='getKeys') arr.push(k) }); return arr; }

[jQuery] Re: Cross domain Ajax without Proxy

2008-12-11 Thread ricardobeat
On Dec 10, 5:33 pm, aquaone aqua...@gmail.com wrote: Tangent question: 1. If someone was to add an iframe to a page, would cookies be sent to the page within the iframe? AFAIK cookies are stored an a per-domain basis, so if your iframe page resides in the same domain it has access to the

[jQuery] Re: Cross domain Ajax without Proxy

2008-12-11 Thread ricardobeat
Flash allows you to set cross-domain policies via a file called crossdomain.xml, see here: http://livedocs.adobe.com/flash/9.0/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=1085.html But that requires access to the server which will provide the data anyway, so you

[jQuery] Re: Trouble with adding 'addClass' to an existing piece of Jquery code

2008-12-11 Thread Jim D
Oh, one more thing I forgot, change the .menu-on declaration to .menu- on a

[jQuery] Re: Cross domain Ajax without Proxy

2008-12-11 Thread Bil Corry
Roy M wrote on 12/10/2008 4:17 AM: Is it possible to get remote contents if page is in another domain, without use of proxy? I haven't used it, but you might be able to use this: CSSHttpRequest (CHR) is a method for cross-domain AJAX using CSS for transport.

[jQuery] Re: newbie: unfold form on checkbutton

2008-12-11 Thread ksun
I think I like this one better. Removed the anchor tag, and used this.checked (DOM object) I tend to rewrite stuff a lot with Jquery, I guess thats part of the learning. script $(document).ready(function() { $(':checkbox').click(function(){ if(this.checked)

[jQuery] Re: Styling the 2nd table tag above a row

2008-12-11 Thread Guy
OK, Figured it out and am posting this for anyone who may have this question later on. Here's what I used: $(tr.myClass).each(function() { $(this).parents(table).slice(1,2).css(border, 4px black solid); }); Hope that is helpful to others. Guy On Dec 11, 12:13 pm, Guy g...@epicsky.com

[jQuery] Re: Simple FadeIn with Appending

2008-12-11 Thread WhoButSB
The variable fieldName is something that I'am pulling in from somewhere else. Here is the full code: if(val == ''){ var fieldName = $(select[name='fieldcategoryID'] :selected).text(); $(#fieldValue label).fadeIn('slow', function (){ $(this).after(span class='field-error'You need to enter a

[jQuery] Re: Top 5 Movies of the Box Office Watch Online

2008-12-11 Thread Karl Swedberg
On Dec 11, 2008, at 12:41 PM, Bil Corry wrote: And I'm assuming the JQuery list owner(s) are also making use of ban feature to ban users that only post spam (via the Manage Users option at Google Groups). If not, it's something to consider. Yes, we are making use of the ban feature.

[jQuery] Re: Jquery autocomplete with spring MVC

2008-12-11 Thread Jörn Zaefferer
You should use a JSON library (see json.org) to generate valid JSON, then write that directly to the response, returning null to indicate to Spring that the response is already rendered. Something like this: searchVal = ServletRequestUtils.getStringParameter(request, q); list=

[jQuery] Re: Jquery autocomplete with spring MVC

2008-12-11 Thread Jörn Zaefferer
Though in this case you don't really need JSON, just a line-delimited list. searchVal = ServletRequestUtils.getStringParameter(request, q); list= service.getResult(searchVal ); for (String entry : list) { response.getWriter().write(entry + \\n); } return null; On Thu, Dec 11, 2008 at 11:03

[jQuery] Re: Problems with Validate's errorPlacement

2008-12-11 Thread Jörn Zaefferer
Try this: errorPlacement: function(error, element) { error.appendTo(element.prev()); } Jörn On Thu, Dec 11, 2008 at 3:30 PM, knal knalp...@gmail.com wrote: Hi there, I'm using Validate on my website, but i'm having difficulties with the errorPlacement. In simple a

[jQuery] Re: IE Opacity Issue

2008-12-11 Thread Josh Nathanson
Maybe try removing the quotes around .9 - it is probably looking for a number rather than a string. I could see this borking IE. -- Josh -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Eric Sent: Thursday, December 11, 2008 11:47 AM

[jQuery] detect when content of element changes?

2008-12-11 Thread Geuis
On the site I'm working on, we have some span tags with IDs. The spans are initially rendered on the page with no text content. When certain events happen, text error messages are loaded into these spans. I want to write an additional handler that is triggered when the text content of the span is

[jQuery] Re: Cycle plug in Next/Prev image Alt issue

2008-12-11 Thread Mike Alsup
$(function() {  $('#s1').cycle({ fx:     'scrollHorz', speed:  'fast',  timeout: 0, prevNextClick: onBefore, next:   '#next2', prev:   '#prev2' }); Don't use the prevNextClick option, that callback is only invoked when the prev or next item is clicked. Use the 'before' option instead.

[jQuery] Re: Cross domain Ajax without Proxy

2008-12-11 Thread ricardobeat
Hi Bill, it seems that that technique doesn't work for FF3, so it's out, unfortunately. On Dec 11, 6:35 pm, Bil Corry b...@corry.biz wrote: Roy M wrote on 12/10/2008 4:17 AM: Is it possible to get remote contents if page is in another domain, without use of proxy? I haven't used it, but

[jQuery] Need help with Ajax-ColdFusion-Modal Login...

2008-12-11 Thread Rick Faircloth
I just can't seem to get my head around the processing flow for an ColdFusion and Ajax-based login using a Shadowbox modal window... Does anyone know of any tutorials that show how to use ColdFusion, jQuery, and a modal window (doesn't have to be a Shadowbox) for login? I found a tutorial by

[jQuery] Re: Need help with Ajax-ColdFusion-Modal Login...

2008-12-11 Thread Mike Chabot
I don't think Shadowbox is very common since it costs money and most of the jQuery modal windows are free. If you are paying money for it you should try to get support from the person that sells it. Some of the other modal windows have great examples, like Thickbox. Maybe try a modal window that

[jQuery] Re: Need help with Ajax-ColdFusion-Modal Login...

2008-12-11 Thread Rick Faircloth
Thanks for the tips and overview, Mike! Of the two you mentioned, Thickbox and jqModal, which one do you use? Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Mike Chabot Sent: Thursday, December 11, 2008 9:20 PM To:

[jQuery] Re: Iterating through .data() elements...

2008-12-11 Thread Jake Rutter
unsubscribe me please On Dec 11, 2008, at 7:28 PM, Ariel Flesler wrote: You need to use $().queue() not data. $().queue('foo',1).queue('foo',2).queue('foo',3) Also, $().queue('foo').each() won't work because the returned data is an array. $.each($().queue('foo'), function(){ }); will

[jQuery] Re: IE Opacity Issue

2008-12-11 Thread wileyl...@gmail.com
And, backgroundColor: '##fff' should be written '#fff' [One hex.] On Dec 11, 2:22 pm, Josh Nathanson joshnathan...@gmail.com wrote: Maybe try removing the quotes around .9 - it is probably looking for a number rather than a string.  I could see this borking IE. -- Josh -Original

[jQuery] cluetip and sortable

2008-12-11 Thread v.ventura
Hi, quick question -- i am using cluetip and I'm trying to place on it a listbox that uses the sortable() plugin to provide a way to order elements. However I am unable to get the sortable behavior when I use cluetip. If I take the same html and put it directly on the page, it works correctly.

[jQuery] Re: Iterating through .data() elements...

2008-12-11 Thread ricardobeat
Hi Ariel, Is there any documentation for this use of queue(), or could you give me a brief explanation? thanks :) - ricardo On Dec 11, 10:28 pm, Ariel Flesler afles...@gmail.com wrote: You need to use $().queue() not data. $().queue('foo',1).queue('foo',2).queue('foo',3) Also,

[jQuery] Re: detect when content of element changes?

2008-12-11 Thread ricardobeat
In case you are changing the text content using jQuery's html/text functions, there is a plugin that can observe calls to this methods: http://quiiver.appspot.com/method_observer_for_jquery - ricardo On Dec 11, 8:49 pm, Geuis geuis.te...@gmail.com wrote: On the site I'm working on, we have

[jQuery] Re: Need help with Ajax-ColdFusion-Modal Login...

2008-12-11 Thread Mike Chabot
I evaluated the jQuery modal windows a few months back and jqModal and Thickbox were at the top of the list due to their popularity, good examples, and they do most everything you want. I would lean towards jqModal since the author is active with keeping it up to date. The built-in UI Dialog is

  1   2   >