[jQuery] Using message param in $.blockUI [jquery.BlockUI.js]

2009-04-17 Thread Colonel
Hi all, I have some problem with code: When I try code like this: $('#showDialog').click(function() { $('#question').load('wait.php?ID=1NUMBER=1'); $.blockUI({message: $('#question'), css:{width:'275px'}}); }); I have some error in IE: Unexpected call to method or treatment to the property.

[jQuery] Re: need help with jqGrid

2009-04-17 Thread Led
thanks tony, but is not loading the results ... and no error On 17 Abr, 15:36, Tony t...@trirand.com wrote: Hello, The version of jquery  1.3.1 that you use is not compatible with jqGrid version 3.4 Download the latest 3.4.3 version of jqGrid On Apr 17, 2:51 pm, Led l.r@sapo.pt wrote:

[jQuery] localScroll not working in Internet Explorer

2009-04-17 Thread Dan Pouliot
I have a web form that I'm using localScroll to 'paginate' the form... https://www.omansion.com/weddings_and_parties/event_request_form/ The form scrolls to the right perfectly in Firefox and Safari, but not internet explorer (6 or 7). It has something to do with the fact that the hrefs of the

[jQuery] Re: Form validation plugin

2009-04-17 Thread koolkat
When I tried it on 1.3.2, the messages displayed briefly but then the form submitted. Is there some other change I need to make? Thanks. On Apr 15, 11:59 pm, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: The current validation plugin works fine with both 1.2.6 and 1.3.2. Jörn On Thu,

[jQuery] Re: Form validation plugin

2009-04-17 Thread Rick
I bet you're just missing a comma or something somewhere.. On Apr 17, 1:11 pm, koolkat merrill.ma...@yahoo.com wrote: When I tried it on 1.3.2, the messages displayed briefly but then the form submitted. Is there some other change I need to make? Thanks. On Apr 15, 11:59 pm, Jörn Zaefferer

[jQuery] Re: I need some hints

2009-04-17 Thread MorningZ
oops .T1 tr:hover td { should be #T1 tr:hover td { On Apr 17, 3:50 pm, MorningZ morni...@gmail.com wrote: How about working the other way... You provide a small sample of your table HTML, and then someone could provide CSS or jQuery help, as there is no idea why CSS's :hover wouldn't work

[jQuery] Re: I need some hints

2009-04-17 Thread waseem sabjee
here's the solution. the jquery code is $(#myid).hover(function() { $(#myelement).animate({ backgroundColor:#666 ), 1000 ); }, function() { $(#myelement).animate({ backgroundColor:#FFF ), 1000 ); } ); just make sure the you have a unique ID On Fri, Apr 17, 2009 at 8:41 PM, András Csányi

[jQuery] Validate form onload/reload

2009-04-17 Thread Skatan
I would like to validate my form with jQuery when the pages directly when the page is loading without need of submit, keyup. This because I want it to work togheter with a PHP/server script validation in the next step, for saftey reason. So if the server side validation redirect the user pack to

[jQuery] AJAX xml problem

2009-04-17 Thread barton
I have a rss feed and want to navigate to media:thumbnails url=' etc. I can't figure out what to use for a selector as the media:thumbnails just doesn't work. I am doing a .find(). Any ideas. The feed is http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml which I get via

[jQuery] tabs plugin scrolls page to the tab ID

2009-04-17 Thread instamattic
And why not? AFAIK that's normal HTML behavior. How the tabs() documentation says to set it up: a href=#tabs-1something/a - Clicking that will scroll the page to where div id=tabs-1/div - appears. And that's exactly what's happening to my tabs implementation. The tabs do what they're meant to

[jQuery] non-DOM usage? (Rhino in the wild)

2009-04-17 Thread Owen Densmore
Hi folks. Apparently jQuery can not be used outside the browser .. or at least without a DOM: Rhino 1.7 release 2 2009 03 22 js load('/Users/owen/local/jquery-1.3.2.js'); js: /Users/owen/local/jquery-1.3.2.js, line 613: uncaught JavaScript runtime exception: ReferenceError: document is not

[jQuery] Re: Form validation plugin

2009-04-17 Thread Mark (Germany)
i have major trouble to get the form validation plugin from Jörg to run it seems like it cannot deal with forms coming from a framework like CAKEPHP the fields are build the following by cake: textarea name=data[Poll][descr] cols=30 rows=13 class=bbcode width=100% id=PollDescr /textarea well,

[jQuery] [SUPERFISH] Confused by quick start

2009-04-17 Thread beeky
Superfish is the solution I've been looking for but I can't get past the quick start. I created a CSS menu ala SuckerFish. I added the CSS and two JavaScript segments: script type=text/javascript src=superfish.js/script and script type=text/javascript $(document).ready(function() {

[jQuery] Vertical center img in a div trouble

2009-04-17 Thread dafydd61
Hi folks Please forgive me if this is discussed elsewhere, but I haven't found anything that helps. Also, please forgive the clumsy code - I'm just starting to really figure out how to use js and jquery properly. I plan to chain these together, but I want to get it working first! I'm trying to

[jQuery] SUPERFISH - Need help with Quick Start Guide

2009-04-17 Thread beeky
First of all I apologize if this message appears twice, I tried to post it about an hour ago and it has never appeared on the forum so I'm reposting. I followed the Superfish Quick Start Guide but am unable to get the superfish menu working. I started with a working CSS menu based on the

[jQuery] Re: Confused by quick start

2009-04-17 Thread James
Usually that errors means that the jQuery library is not loaded in the document. Make sure to include the jQuery library and the link to it is correct. On Apr 17, 9:12 am, beeky staff...@marine.rutgers.edu wrote: Superfish is the solution I've been looking for but I can't get past the quick

[jQuery] Re: Validate form onload/reload

2009-04-17 Thread James
Try: $(#myform).validate(validation_options).form(); You might need to add a condition check to make sure the form was submitted, since you probably don't want this code to run automatically on the initial form load before the user actually submitted the form for the first time. On Apr 17, 8:09 

[jQuery] Re: SUPERFISH - Need help with Quick Start Guide

2009-04-17 Thread James
I've replied to your earlier post: http://groups.google.com/group/jquery-en/browse_thread/thread/65d8de0a92a35b67 On Apr 17, 10:03 am, beeky staff...@marine.rutgers.edu wrote: First of all I apologize if this message appears twice, I tried to post it about an hour ago and it has never appeared

[jQuery] Re: I need some hints

2009-04-17 Thread mkmanning
András, you can use CSS as MorningZ said: tr:hover td {/*some color*/} If you're td's don't have a background color, you can put it directly on the tr tr:hover {/*some color*/} Note that IE6 doesn't support the :hover pseudo-class on elements other than anchors, to if IE6 support is needed,

[jQuery] binding event handlers to the new rows

2009-04-17 Thread mohan prasad
hello, i have written two event handlers one on click of anchor tag class (edit_item), another on click of row column class(show_subitems) as mentioned below. For the first time page load, its working perfectly(i am providing event handler code inside jquery(document).ready) So event handler is

[jQuery] Re: fadeOut Callback Trigger Count

2009-04-17 Thread blockedmind
Nothing? On Apr 17, 8:46 pm, blockedmind blockedm...@gmail.com wrote: This problem occurs when $(#menu li a).fadeOut(function() {}); being used. callback function is called 3 times 'cos there is 3 li elements. On Apr 17, 7:28 pm, blockedmind blockedm...@gmail.com wrote: Callback function

[jQuery] Re: I need some hints

2009-04-17 Thread mkmanning
The second function in my example went missing :P $('tr').hover(function(){ $(this).addClass(CLASS_WITH_BACKGROUND_COLOR); }, function(){ $(this).removeClass(CLASS_WITH_BACKGROUND_COLOR); }); On Apr 17, 4:04 pm, mkmanning michaell...@gmail.com wrote: András, you can use CSS as MorningZ

[jQuery] Re: 'Simulating' mouseenter/mouseleave/hover events using $.live

2009-04-17 Thread alexander farkas
You can try the following code for this (only testet with firefox). (function($){ var contains = document.compareDocumentPosition ? function(a, b){ return a.compareDocumentPosition(b) 16; } : function(a, b){ return a !== b (a.contains ?

[jQuery] Re: Works in IE7 but not IE6

2009-04-17 Thread MauiMan2
Okay, the following actually works: jQuery(document).ready(function(){ alert(Thanks for visiting!); }); but I haven't been able to get any other jQuery commands to work, including ones that worked on other sites then got ported over to this

[jQuery] Re: Works in IE7 but not IE6

2009-04-17 Thread waseem sabjee
instead of jQuery(document).ready( function(){ alert(Thanks for visiting!); }); try doing this $(function() { alert(Thanks for visiting!); }); make sure all your jquery is wrapped in that function. example $(function() { alert(Thanks for visiting!);

[jQuery] Re: non-DOM usage? (Rhino in the wild)

2009-04-17 Thread Ricardo
Most features of jQuery are DOM related, so what part of it exactly would you like to use? jQuery's source is divided in modules, guess you could take only what you need from each: http://jqueryjs.googlecode.com/svn/trunk/jquery/src/ cheers, - ricardo On Apr 17, 4:02 pm, Owen Densmore

[jQuery] Re: non-DOM usage? (Rhino in the wild)

2009-04-17 Thread waseem sabjee
would doing that not cause your site to lose and w3c xhtml validation ? or I am over thinking On Sat, Apr 18, 2009 at 3:39 AM, Ricardo ricardob...@gmail.com wrote: Most features of jQuery are DOM related, so what part of it exactly would you like to use? jQuery's source is divided in

[jQuery] Re: Works in IE7 but not IE6

2009-04-17 Thread Karl Swedberg
On Apr 17, 2009, at 9:37 PM, waseem sabjee wrote: instead of jQuery(document).ready( function(){ alert(Thanks for visiting!); }); try doing this $(function() { alert(Thanks for visiting!); }); make sure all your jquery is wrapped in that function.

[jQuery] Re: Works in IE7 but not IE6

2009-04-17 Thread waseem sabjee
yeah in that case. I prefer only sticking to one library per site... On Sat, Apr 18, 2009 at 3:59 AM, Karl Swedberg k...@englishrules.comwrote: On Apr 17, 2009, at 9:37 PM, waseem sabjee wrote: instead of jQuery(document).ready( function(){ alert(Thanks for

[jQuery] Re: AJAX Problem

2009-04-17 Thread Rogue Lord
Ok got the pages to work with the livequery plugin but now I am having a problem with the get data function... I know that the data: should when using 'type: GET' should give me a similar effect to ? id=1... var replacement = $(this).attr(title);

[jQuery] Re: cluetip ajax authentication

2009-04-17 Thread DotnetShadow
Thanks for that, I haven't tried it yet I actually temporarly solved it using this: cluetip plugin - Need beforeSend() and error handling override http://groups.google.com/group/jquery-en/browse_thread/thread/74ed458203e6147b/5e9dd005a7b349b2?lnk=gstq=dotnetshadow#5e9dd005a7b349b2 But I will

[jQuery] Re: cluetip ajax authentication

2009-04-17 Thread DotnetShadow
Thanks for that, I haven't tried it yet. Does that mean we can now override the error and beforesend method? What happens when there is a redirec? Your documentation hasn't been updated, so not sure what the default behaviour is? I actually temporarly solved it using this: cluetip plugin - Need

[jQuery] Re: How to rotate image (in degrees)?

2009-04-17 Thread Ricardo
It is doable with SVG/VML too: http://raphaeljs.com/image-rotation.html cheers, - ricardo On 17 abr, 12:20, Richard D. Worth rdwo...@gmail.com wrote: This is going to require canvas. So a google search for 'rotate image javascript canvas' turned up:

<    1   2