[jQuery] Re: help please

2009-03-02 Thread Rick Faircloth
query...@googlegroups.com] On Behalf Of paulmo Sent: Monday, March 02, 2009 6:37 PM To: jQuery (English) Subject: [jQuery] Re: help please there's no instructions for changing style and author recommends this forum for questions, so thanks for offering guidance. regards On Mar 2, 1:52 pm, &q

[jQuery] Re: help please

2009-03-02 Thread paulmo
ltips on the plug-in site? > > Surely he goes... > > > > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > Behalf Ofpaulmo > Sent: Monday, March 02, 2009 12:17 PM > To: jQuery (English) > Subject: [jQuery] Re

[jQuery] Re: help please. ajax call get status 0 and responseText null

2009-03-02 Thread James
Is the page that your javascript is located on also on localhost? Is myurl an absolute or relative url? On Mar 1, 8:24 pm, tonygale wrote: > here is source code. In my javascript function I use jquery to make a > ajax call. myurl is a jsp in localhost which will output a xml. > However i got sta

[jQuery] Re: help please! I get status 0 and responsText is null

2009-03-02 Thread mkmanning
How are you initiating the ajax request? On Mar 2, 10:04 am, Tonygale wrote: > here is source code. In my javascript function I use jquery to make a ajax > call. myurl is a jsp in localhost which will output a xml. However i got > status 0(not 200). What happen? > $.ajax({ >         type:"POST",

[jQuery] Re: help please

2009-03-02 Thread Rick Faircloth
cascade effect, too, which makes determining > what css is affecting what display all the more difficult. > > Rick > > > > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] > On > > Behalf Ofpaulmo > Sent: Sunday, M

[jQuery] Re: help please

2009-03-02 Thread paulmo
e cascade effect, too, which makes > determining what css is affecting what display all the > more difficult. > > Rick > > > > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > Behalf Ofpaulmo > Sent: Sunday, March 01, 2009

[jQuery] Re: help please

2009-03-01 Thread Rick Faircloth
-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of paulmo Sent: Sunday, March 01, 2009 8:11 PM To: jQuery (English) Subject: [jQuery] Re: help please thanks for the feedback rick. it's working now and as is often the case here, not sure why. had to do with the order of sever

[jQuery] Re: help please

2009-03-01 Thread paulmo
x27;ve got the same > code. > > Let me know what happens... > > Rick > > > > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > Behalf Of paulmo > Sent: Sunday, March 01, 2009 2:49 PM > To: jQuery (English)

[jQuery] Re: help please

2009-03-01 Thread Rick Faircloth
-Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of paulmo Sent: Sunday, March 01, 2009 2:49 PM To: jQuery (English) Subject: [jQuery] Re: help please sure, thanks: //this code in previous message $(function() { $('#set1 *')

[jQuery] Re: help please

2009-03-01 Thread paulmo
nline or > some code we can review? > > Rick > > > > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > Behalf Of paulmo > Sent: Sunday, March 01, 2009 9:10 AM > To: jQuery (English) > Subject: [jQuery] Re: hel

[jQuery] Re: help please

2009-03-01 Thread Rick Faircloth
Got a page that can be viewed online or some code we can review? Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of paulmo Sent: Sunday, March 01, 2009 9:10 AM To: jQuery (English) Subject: [jQuery] Re: help please just copied

[jQuery] Re: help please

2009-03-01 Thread paulmo
just copied entire demo page code as new file and checked links to external files...stylized boxes still don't execute. i do get the yellow windows tooltip with text, but not the stylized tooltips. the css appears to be working otherwise. help?

[jQuery] Re: Help please with toggling a class

2009-02-28 Thread zac
Great! Thanks!! On Feb 27, 7:09 pm, Josh Powell wrote: > oh, very nice.  I wasn't aware of toggleClass. > > On Feb 27, 6:51 pm, Karl Swedberg wrote: > > > Hi Zac, > > > You just need to add one line -- $(this).toggleClass('yourClass'); --   > > where "yourClass" is the class you want to toggle

[jQuery] Re: Help please with toggling a class

2009-02-27 Thread Josh Powell
oh, very nice. I wasn't aware of toggleClass. On Feb 27, 6:51 pm, Karl Swedberg wrote: > Hi Zac, > > You just need to add one line -- $(this).toggleClass('yourClass'); --   > where "yourClass" is the class you want to toggle on and off. > > You should also add return false after that line so th

[jQuery] Re: Help please with toggling a class

2009-02-27 Thread Karl Swedberg
Hi Zac, You just need to add one line -- $(this).toggleClass('yourClass'); -- where "yourClass" is the class you want to toggle on and off. You should also add return false after that line so that the default click behavior doesn't occur. jQuery.fn.fadeToggle = function(speed, easing, cal

[jQuery] Re: Help please with toggling a class

2009-02-27 Thread Jack Killpatrick
this might help get you down the right path: http://docs.jquery.com/Events/toggle#fnfn2fn3.2Cfn4.2C... - Jack zac wrote: Hi.. I am trying to have it so my navigation toggle hidden boxes on the site. I want it so the link toggles the box on and off, as well as having the link itself have a cl

[jQuery] Re: Help please with toggling a class

2009-02-27 Thread Josh Powell
Without really understanding what your fadeToggle plugin is doing, this will toggle adding and removing a class: $(function() { $('a.aboutlink').toggle( function () { $(this).addClass('aboutBox');

[jQuery] Re: Help please on Using ajax url as ID

2008-09-08 Thread micah
URLs contain characters that aren't allowed in IDs. the spec (http:// www.w3.org/TR/html401/types.html#type-name) says that IDs must use only a-Z, 0-9, _, : and . -micah On Sep 8, 9:11 am, jeremyBass <[EMAIL PROTECTED]> wrote: > Caught a few errors... current code... > > $("#replaceME").append

[jQuery] Re: Help please on Using ajax url as ID

2008-09-08 Thread jeremyBass
Caught a few errors... current code... $("#replaceME").append(''+ $AJAXCONTENT+''); }); $.ajax({ url: "test.html", cache: false, success: function(html){ $("body").append('WindX'), $("#"+$url).append(html); } }); but here is the location of the test file... http://www.sjrmc.org/Scri