[jQuery] Re: Tutorial evaluation

2009-07-08 Thread BaBna

The next link doesn't work? Do you have JavaScript disabled or
what? :P
I tested it in IE, Chrome and FF without problem.
Please let me know if you're also having troubles.

Jeff, sorry but I don't have a clue about cakephp - actually I'm
looking into it now, it seems pretty interesting...


On Jul 8, 5:43 am, jeff jeffery2k2...@gmail.com wrote:
 looks like this could of good help but ur next link doesnt seems to work

 Also a request, am using cakephp framework so could u help

 in showing how to use jquery with cakephp and retreive values from jquery to
 a controller

 in cakephp..

 this will be a challenge i bet..

 On Wed, Jul 8, 2009 at 10:06 AM, bharathbhooshan ambati 



 bharathbhooshan.amb...@gmail.com wrote:
  All the best..

  Keep on posting dude...

  On Wed, Jul 8, 2009 at 12:16 AM, BaBna thomas.na...@gmail.com wrote:

  Hi,

  I have just finished a beginner's interactive tutorial about jQuery
  for my colleagues, and I wonder if anyone could give any feedback on
  it - it's my very first training material.

 http://babna.eu/jQuery/

  Thanks!

  Thomas

  --
  భరత్ భూషణ్ అంబటి

 --
 --
 (¨`•.•´¨) I may be busy,
 `•.¸(¨`•.•´¨)  but I assure you,
 (¨`•.•´¨)¸.•´ you are always in my heart
 `•.¸.•´

 With Lots of Love.

 THANKS AND REGARDS

 Jeffery Jacob


[jQuery] Re: Tutorial evaluation

2009-07-07 Thread Blake Senftner


Thomas,

Nice tutorial! Being that I'm just learning jQuery myself, I'm  
finding your page to be quite helpful.

Leave it up for a while, okay?

Sincerely,
-Blake
bsenft...@earthlink.net

On Jul 7, 2009, at 11:46 AM, BaBna wrote:



Hi,

I have just finished a beginner's interactive tutorial about jQuery
for my colleagues, and I wonder if anyone could give any feedback on
it - it's my very first training material.

http://babna.eu/jQuery/

Thanks!

Thomas




[jQuery] Re: Tutorial evaluation

2009-07-07 Thread BaBna

Tthanks a lot Blake, no problem I'll leave it there

On Jul 7, 10:13 pm, Blake Senftner bsenft...@earthlink.net wrote:
 Thomas,

 Nice tutorial! Being that I'm just learning jQuery myself, I'm  
 finding your page to be quite helpful.
 Leave it up for a while, okay?

 Sincerely,
 -Blake
 bsenft...@earthlink.net

 On Jul 7, 2009, at 11:46 AM, BaBna wrote:



  Hi,

  I have just finished a beginner's interactive tutorial about jQuery
  for my colleagues, and I wonder if anyone could give any feedback on
  it - it's my very first training material.

 http://babna.eu/jQuery/

  Thanks!

  Thomas


[jQuery] Re: Tutorial evaluation

2009-07-07 Thread bharathbhooshan ambati
All the best..

Keep on posting dude...

On Wed, Jul 8, 2009 at 12:16 AM, BaBna thomas.na...@gmail.com wrote:


 Hi,

 I have just finished a beginner's interactive tutorial about jQuery
 for my colleagues, and I wonder if anyone could give any feedback on
 it - it's my very first training material.

 http://babna.eu/jQuery/

 Thanks!

 Thomas




-- 
భరత్ భూషణ్ అంబటి


[jQuery] Re: Tutorial evaluation

2009-07-07 Thread jeff
looks like this could of good help but ur next link doesnt seems to work

Also a request, am using cakephp framework so could u help

in showing how to use jquery with cakephp and retreive values from jquery to
a controller

in cakephp..

this will be a challenge i bet..

On Wed, Jul 8, 2009 at 10:06 AM, bharathbhooshan ambati 
bharathbhooshan.amb...@gmail.com wrote:

 All the best..

 Keep on posting dude...

 On Wed, Jul 8, 2009 at 12:16 AM, BaBna thomas.na...@gmail.com wrote:


 Hi,

 I have just finished a beginner's interactive tutorial about jQuery
 for my colleagues, and I wonder if anyone could give any feedback on
 it - it's my very first training material.

 http://babna.eu/jQuery/

 Thanks!

 Thomas




 --
 భరత్ భూషణ్ అంబటి





-- 
-- 
(¨`•.•´¨) I may be busy,
`•.¸(¨`•.•´¨)  but I assure you,
(¨`•.•´¨)¸.•´ you are always in my heart
`•.¸.•´


With Lots of Love.

THANKS AND REGARDS

Jeffery Jacob


[jQuery] Re: tutorial

2009-05-16 Thread Shawn


Any time you see something like

$(a).addClass(test);

You can assume this is JavaScript.  In particular, this is JS that makes 
use of the jQuery library.  JavaScript can only appear in certain places 
- either in an included .js library (via script type=text/javascript 
src=someLibrary.js/script), or within script tags.


Where jQuery is concerned, the $() method is not available until after 
the jQuery library has been included.  So make sure you include the 
library BEFORE doing anything that makes use of jQuery.


In addition though, you often don't want the jQuery code executed until 
the page is done loading.  In this case, if the addClass method is 
called before the HTML is rendered, then nothing will happen because the 
$(a) would return nothing.  In this case you want to make sure your 
command is put inside the .ready() method.  For example:


script type=text/javascript
  $(document).ready( function () {
$(a).addClass(test);
  });
/script

I haven't looked at the tutorial in years, but hopefully this is enough 
to help figure out what you need.


I might suggest though to maybe nail down the HTML know-how, and read up 
on basic JS.  Both will help make this all make sense.  As is you might 
be taking on too much all at once and overwhelming or confusing yourself 
- but that's how I learn too, so whichever works best for you.


BTW, Dreamweaver isn't a bad tool, but if you are working at this level, 
put Dreamweaver into Code View, and don't use the Design View at all. 
It might take a bit more to learn to start with, but you need to know 
how to do everything by hand eventually (i.e. no graphical tool to write 
code)... may as well start now.  My thoughts though.


Shawn

keithcoo wrote:

I went through part of the tutorial, and when i got to the section
adding and removing a css class i got stuck. the question i have is
this: do we add the$(a).addClass(test);  part to the html file
we created in the tutorial section The basics? if so, do we need to
delete some of the stuff we stuck in that file we created before we
add the $(a).addClass(test);   ?  im new to dreamweaver and
html and all this kinda stuff, so talk to me like im a beginner. if
the creaters of this tutorial are reading this, it would be helpful if
you gave an example of how the whole file would look for each section
of the tutorial, so that there is no confusion for guys like me.
thanks!

keith


[jQuery] Re: Tutorial for serialScroll?

2009-03-21 Thread Ariel Flesler

Hi Jack

The rule of thumb is, if it works without javascript, it'll work w/it.
Make the pane scrollable with overflow:visible and the items within
it.
Once it works, you can switch to overflow:hidden + serialScroll.

--
Ariel Flesler
http://flesler.blogspot.com

On Mar 20, 2:08 pm, Jack Killpatrick j...@ihwy.com wrote:
 Hi All,

 I did a nifty implementation using jquery serialScroll to scroll images
 inside an iphone image (to display screenshots: site isn't publicly
 available yet). I had to reverse-engineer my way through the demos and
 other people's implementations to figure out how to make it work. Main
 problems stemmed from getting the html and css right. Anyway, I'm
 wondering if anyone knows of some good tutorials for serialScroll? If
 not, I rekkin I might write one up.

 Thx,
 Jack


[jQuery] Re: [TUTORIAL] Creating an OS Web Interface in jQuery (Part I)

2008-12-16 Thread Liam Potter


good for a beginner to start learning from, but what does this offer?, 
really it is some pretty graphics and a click and drag script and some 
mouse clicks ?


Rick Faircloth wrote:

Great idea, Adrian!  Good work!

Rick

  

-Original Message-
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf 
Of AdrianMG
Sent: Tuesday, December 16, 2008 7:57 AM
To: jQuery (English)
Subject: [jQuery] [TUTORIAL] Creating an OS Web Interface in jQuery (Part I)


Finally here you have the First Part of this series of tutorials to
recreate an OS Web Interface with our lovely jQuery javascript
library.

Here you have the link guys, I hope you can use it for your personal
projects:

http://yensdesign.com/2008/12/creating-an-os-web-interface-in-jquery-part-i/



  




[jQuery] Re: [TUTORIAL] Creating an OS Web Interface in jQuery (Part I)

2008-12-16 Thread Rick Faircloth

Great idea, Adrian!  Good work!

Rick

 -Original Message-
 From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On 
 Behalf Of AdrianMG
 Sent: Tuesday, December 16, 2008 7:57 AM
 To: jQuery (English)
 Subject: [jQuery] [TUTORIAL] Creating an OS Web Interface in jQuery (Part I)
 
 
 Finally here you have the First Part of this series of tutorials to
 recreate an OS Web Interface with our lovely jQuery javascript
 library.
 
 Here you have the link guys, I hope you can use it for your personal
 projects:
 
 http://yensdesign.com/2008/12/creating-an-os-web-interface-in-jquery-part-i/



[jQuery] Re: [TUTORIAL] Creating an OS Web Interface in jQuery (Part I)

2008-12-16 Thread Rick Faircloth

 what does this offer?

You are so encouraging, Liam!

Two things you should make note of in Adrian's remarks:

1)  First Part of this series of tutorials
2)  OS Web Interface

i.e., it's the first steps in a potentially useful interface
and as an OS Web Interface it's purpose is to provide pretty graphics,
click and drag, and mouse clicks.

What else do you want from an OS Web Interface in its beginning stages
or when it's complete, for that matter...

Sheesh...

Rick

 -Original Message-
 From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On 
 Behalf Of Liam Potter
 Sent: Tuesday, December 16, 2008 12:32 PM
 To: jquery-en@googlegroups.com
 Subject: [jQuery] Re: [TUTORIAL] Creating an OS Web Interface in jQuery (Part 
 I)
 
 
 good for a beginner to start learning from, but what does this offer?,
 really it is some pretty graphics and a click and drag script and some
 mouse clicks ?
 
 Rick Faircloth wrote:
  Great idea, Adrian!  Good work!
 
  Rick
 
 
  -Original Message-
  From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On 
  Behalf Of AdrianMG
  Sent: Tuesday, December 16, 2008 7:57 AM
  To: jQuery (English)
  Subject: [jQuery] [TUTORIAL] Creating an OS Web Interface in jQuery (Part 
  I)
 
 
  Finally here you have the First Part of this series of tutorials to
  recreate an OS Web Interface with our lovely jQuery javascript
  library.
 
  Here you have the link guys, I hope you can use it for your personal
  projects:
 
  http://yensdesign.com/2008/12/creating-an-os-web-interface-in-jquery-part-i/
 
 
 




[jQuery] Re: [TUTORIAL] Create an amazing music player using mouse gestures hotkeys in jQuery

2008-12-09 Thread AdrianMG

Thanks for reply Isaak ;)

On Dec 5, 5:24 pm, Isaak Malik [EMAIL PROTECTED] wrote:
 you'll notice*



 On Fri, Dec 5, 2008 at 5:24 PM, Isaak Malik [EMAIL PROTECTED] wrote:
  If you read the entire tutorial you'll noticed that he mentions it's just
  an interface and he has plans to integrate it with 
  plusmusicahttp://www.plusmusica.com/(request for an invitation)

  On Fri, Dec 5, 2008 at 5:11 PM, Jean [EMAIL PROTECTED] wrote:

  4 me too

  On Fri, Dec 5, 2008 at 7:29 AM, Mika Tuupola [EMAIL PROTECTED]
  wrote:

   On Dec 4, 2008, at 7:28 PM, AdrianMG wrote:

   You can see the tutorial over here:

 http://yensdesign.com/2008/12/create-an-amazing-music-player-using-mo...

   Should there be music too? It is silent for me FF3  Safari in OSX?

   --
   Mika Tuupola
  http://www.appelsiini.net/

  --

  []´s Jean
 www.suissa.info

    Ethereal Agency
 www.etherealagency.com

  --
  Isaak Malik
  Web Developer

 --
 Isaak Malik
 Web Developer


[jQuery] Re: [TUTORIAL] Create an amazing music player using mouse gestures hotkeys in jQuery

2008-12-05 Thread Mika Tuupola



On Dec 4, 2008, at 7:28 PM, AdrianMG wrote:


You can see the tutorial over here:
http://yensdesign.com/2008/12/create-an-amazing-music-player-using-mouse-gestures-hotkeys-in-jquery/



Should there be music too? It is silent for me FF3  Safari in OSX?

--
Mika Tuupola
http://www.appelsiini.net/



[jQuery] Re: [TUTORIAL] Create an amazing music player using mouse gestures hotkeys in jQuery

2008-12-05 Thread Jean

4 me too

On Fri, Dec 5, 2008 at 7:29 AM, Mika Tuupola [EMAIL PROTECTED] wrote:


 On Dec 4, 2008, at 7:28 PM, AdrianMG wrote:

 You can see the tutorial over here:

 http://yensdesign.com/2008/12/create-an-amazing-music-player-using-mouse-gestures-hotkeys-in-jquery/


 Should there be music too? It is silent for me FF3  Safari in OSX?

 --
 Mika Tuupola
 http://www.appelsiini.net/





-- 

[]´s Jean
www.suissa.info

   Ethereal Agency
www.etherealagency.com


[jQuery] Re: [TUTORIAL] Create an amazing music player using mouse gestures hotkeys in jQuery

2008-12-05 Thread Isaak Malik
If you read the entire tutorial you'll noticed that he mentions it's just an
interface and he has plans to integrate it with
plusmusicahttp://www.plusmusica.com/(request for an invitation)

On Fri, Dec 5, 2008 at 5:11 PM, Jean [EMAIL PROTECTED] wrote:


 4 me too

 On Fri, Dec 5, 2008 at 7:29 AM, Mika Tuupola [EMAIL PROTECTED]
 wrote:
 
 
  On Dec 4, 2008, at 7:28 PM, AdrianMG wrote:
 
  You can see the tutorial over here:
 
 
 http://yensdesign.com/2008/12/create-an-amazing-music-player-using-mouse-gestures-hotkeys-in-jquery/
 
 
  Should there be music too? It is silent for me FF3  Safari in OSX?
 
  --
  Mika Tuupola
  http://www.appelsiini.net/
 
 



 --

 []´s Jean
 www.suissa.info

   Ethereal Agency
 www.etherealagency.com




-- 
Isaak Malik
Web Developer


[jQuery] Re: [TUTORIAL] Create an amazing music player using mouse gestures hotkeys in jQuery

2008-12-05 Thread Isaak Malik
you'll notice*

On Fri, Dec 5, 2008 at 5:24 PM, Isaak Malik [EMAIL PROTECTED] wrote:

 If you read the entire tutorial you'll noticed that he mentions it's just
 an interface and he has plans to integrate it with 
 plusmusicahttp://www.plusmusica.com/(request for an invitation)


 On Fri, Dec 5, 2008 at 5:11 PM, Jean [EMAIL PROTECTED] wrote:


 4 me too

 On Fri, Dec 5, 2008 at 7:29 AM, Mika Tuupola [EMAIL PROTECTED]
 wrote:
 
 
  On Dec 4, 2008, at 7:28 PM, AdrianMG wrote:
 
  You can see the tutorial over here:
 
 
 http://yensdesign.com/2008/12/create-an-amazing-music-player-using-mouse-gestures-hotkeys-in-jquery/
 
 
  Should there be music too? It is silent for me FF3  Safari in OSX?
 
  --
  Mika Tuupola
  http://www.appelsiini.net/
 
 



 --

 []´s Jean
 www.suissa.info

   Ethereal Agency
 www.etherealagency.com




 --
 Isaak Malik
 Web Developer




-- 
Isaak Malik
Web Developer


[jQuery] Re: [TUTORIAL] Create a professional interface for your web applications using jQuery

2008-10-22 Thread Shawn

Not a bad tutorial.  !

But... :)

In your code you are doing things like 

# var windowHeight = document.documentElement.clientHeight;  
# var menuHeight = document.getElementById(menu).clientHeight; 

You can use jQuery here too:

var windowHeight = $(window).height();
var menuHeight = $(#menu).height();

at line 158 you have the following:

# var liList = $(#lateralPanel li).get();  
# for (var i = 0, item; item = liList[i]; i++) {  
# if(item.innerHTML == $(this).text())  
# item.className = active;  
# else  
# item.className = ;  
# }  

I believe this can be replaced with:

$(#lateralPanel li).removeClass(active);
$(this).addClass(active);

- that will remove the active class from all the list items, then add it to 
the target element that triggered the click event (the function that 
surrounds the snippet above).

Also, you have code in there that handles browser differences.  jQuery handles 
most of this for you.  For instance:

$(#myObj).height(100);  

handles the differences between most browsers.  Which makes your code even 
easier to read.

Otherwise not a bad start.  Keep em coming. :)

Shawn


On Tuesday 21 October 2008 16:03:48 AdrianMG wrote:
 In this tut we will create a professional interface for your web
 applications using the killer javascript library jQuery :)

 I hope you can use it for your personal projects guys. Feedback is
 welcome!

 http://yensdesign.com/2008/10/create-a-professional-interface-for-your-web-
applications-using-jquery/




[jQuery] Re: [TUTORIAL] Create a professional interface for your web applications using jQuery

2008-10-22 Thread AdrianMG

Ey Shawn thanks for your feedback! I am not quiet sure now, but I
think I have used

# var windowHeight = document.documentElement.clientHeight;
# var menuHeight = document.getElementById(menu).clientHeight;

Because Internet Explorer give me some problems with the real width 
height available.

I will change some lines, thanks for your comments one more time!

On 22 oct, 08:19, Shawn [EMAIL PROTECTED] wrote:
 Not a bad tutorial.  !

 But... :)

 In your code you are doing things like

 # var windowHeight = document.documentElement.clientHeight;  
 # var menuHeight = document.getElementById(menu).clientHeight;

 You can use jQuery here too:

 var windowHeight = $(window).height();
 var menuHeight = $(#menu).height();

 at line 158 you have the following:

 # var liList = $(#lateralPanel li).get();  
 #     for (var i = 0, item; item = liList[i]; i++) {  
 #         if(item.innerHTML == $(this).text())  
 #             item.className = active;  
 #         else  
 #             item.className = ;  
 #     }  

 I believe this can be replaced with:

 $(#lateralPanel li).removeClass(active);
 $(this).addClass(active);

 - that will remove the active class from all the list items, then add it to
 the target element that triggered the click event (the function that
 surrounds the snippet above).

 Also, you have code in there that handles browser differences.  jQuery handles
 most of this for you.  For instance:

 $(#myObj).height(100);  

 handles the differences between most browsers.  Which makes your code even
 easier to read.

 Otherwise not a bad start.  Keep em coming. :)

 Shawn

 On Tuesday 21 October 2008 16:03:48 AdrianMG wrote:

  In this tut we will create a professional interface for your web
  applications using the killer javascript library jQuery :)

  I hope you can use it for your personal projects guys. Feedback is
  welcome!

 http://yensdesign.com/2008/10/create-a-professional-interface-for-you...
 applications-using-jquery/


[jQuery] Re: tutorial: how to convert from thickbox to jqModal + how to load external url in jqModal

2008-07-02 Thread Brice Burgess


On Jul 1, 6:51 am, pixeline [EMAIL PROTECTED] wrote:
 I hope that my little blurb will be useful to some of you: in this
 article i explain how to usejqModalwith anchors pointing to external
 url, or in iframe mode, to put it differently. I also describe how
 to convert an old thickbox implementation into ajqModal
 implementation without touching the html.

 http://www.pixeline.be/blog/2008/javascript-loading-external-urls-in-...

 Let me know if you have any comments, questions, ok ?

 --
 Alexandre Plennevaux
 LAb[au]

Alexandre,

  This is incredible stuff! Great work and thanks for the insight.
I'll be sure to include a link to your post with the next plugin page
update :)

~ Brice


[jQuery] Re: tutorial code doesn't work :-(

2007-12-12 Thread John Resig

Not sure exactly - did you remember to put it in a
$(document).ready(function(){ ... }) block?

--John

On Dec 12, 2007 3:31 AM, priti [EMAIL PROTECTED] wrote:

 hi,

 I am relatively new in jquery.I just installed and was sailing thru
 tutorial.But somehow i was not able to run following code
 $(a)
.filter(.clickme)
  .click(function(){
alert(You are now leaving the site.);
  })
.end()
.filter(.hideme)
  .click(function(){
  alert('hide');
$(this).hide();
return false;
  })
.end();


 
 html
  a href=http://google.com/; class=clickmeI give a message when
 you leave/abr/
  a href=http://yahoo.com/; class=hidemeClick me to hide!/abr/
  a href=http://microsoft.com/;I'm a normal link/abr/

 i installed the latest version.

 Can someone explain where i might be missing.

 Regards,
 Priti



[jQuery] Re: tutorial needs additional material

2007-07-07 Thread sozzi

The use of the this keyword is always a bit tricky to wrap your head
around, but these two posts helped me to understand things at a
fundamental level:

this in general javascript :
http://www.quirksmode.org/js/this.html
and a bit more jQuery specific:

http://groups.google.com/group/jquery-en/browse_thread/thread/d670a83c308961d3/92e29565dff28d32

Somebody might be inclined to write this up for the tutorial part too.


Regards
Angelo


On Jul 6, 5:22 pm, Josh Nathanson [EMAIL PROTECTED] wrote:
 If each of your target td's has a class clicktd...

 $(.clicktd).click(function() {
 $(this).siblings(td:eq(1)).children(div.class).show();

 });

 Something close to that should work...someone will jump in and correct me
 I'm sure!

 Basically on an event such as click, $(this) will point to whatever was
 clicked, so that's the starting point for any DOM traversal that follows.

 -- Josh

 - Original Message -
 From: Rick Pasotto [EMAIL PROTECTED]
 To: jquery jquery-en@googlegroups.com
 Sent: Friday, July 06, 2007 3:35 PM
 Subject: [jQuery] tutorial needs additional material

  In the main tutorialhttp://docs.jquery.com/How_jQuery_Worksthe third
  section is 3. Callbacks, Functions, and 'this' however there is no
  discussion or even a mention of 'this'.

  Could someone who understands it help this newbie out?

  The specific thing I'm trying to figure out is, given a lists of trs
  how can I attach a click() to the first td of each tr that does a
  show() on a div.class in the third td of that tr?

  --
  I'll take unequal justice to equal injustice any day.
 Rick Pasotto[EMAIL PROTECTED]http://www.niof.net



[jQuery] Re: tutorial needs additional material

2007-07-06 Thread Glen Lipka

http://www.visualjQuery.com is a great resource too.  I cant remember
anything without it.,

I whipped up a demo. Is this it?
http://www.commadot.com/jquery/selectors/tables.htm

Glen

PS.  I had some trouble figuring out how to select all the first tds.
Anyone have a better method than me?



On 7/6/07, Rick Pasotto [EMAIL PROTECTED] wrote:



In the main tutorial http://docs.jquery.com/How_jQuery_Works the third
section is 3. Callbacks, Functions, and 'this' however there is no
discussion or even a mention of 'this'.

Could someone who understands it help this newbie out?

The specific thing I'm trying to figure out is, given a lists of trs
how can I attach a click() to the first td of each tr that does a
show() on a div.class in the third td of that tr?

--
I'll take unequal justice to equal injustice any day.
Rick Pasotto[EMAIL PROTECTED]http://www.niof.net



[jQuery] Re: tutorial needs additional material

2007-07-06 Thread Josh Nathanson


If each of your target td's has a class clicktd...

$(.clicktd).click(function() {
   $(this).siblings(td:eq(1)).children(div.class).show();
});

Something close to that should work...someone will jump in and correct me 
I'm sure!


Basically on an event such as click, $(this) will point to whatever was 
clicked, so that's the starting point for any DOM traversal that follows.


-- Josh


- Original Message - 
From: Rick Pasotto [EMAIL PROTECTED]

To: jquery jquery-en@googlegroups.com
Sent: Friday, July 06, 2007 3:35 PM
Subject: [jQuery] tutorial needs additional material




In the main tutorial http://docs.jquery.com/How_jQuery_Works the third
section is 3. Callbacks, Functions, and 'this' however there is no
discussion or even a mention of 'this'.

Could someone who understands it help this newbie out?

The specific thing I'm trying to figure out is, given a lists of trs
how can I attach a click() to the first td of each tr that does a
show() on a div.class in the third td of that tr?

--
I'll take unequal justice to equal injustice any day.
   Rick Pasotto[EMAIL PROTECTED]http://www.niof.net 




[jQuery] Re: Tutorial example problem with Firefox?

2007-05-15 Thread SeViR


I check the example in Firefox 2.0.0.3 and it works for me. This is my 
sample

code:

!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
meta http-equiv=Content-Type content=text/html; charset=iso-8859-1 /
titleDocumento sin tiacute;tulo/title
script type=text/javascript src=jquery.js/script
script type=text/javascript
   $(document).ready(function(){
$(a)
  .filter(.clickme)
.click(function(){
  alert(You are now leaving the site.);
})
  .end()
  .filter(.hideme)
.click(function(){
  $(this).hide();
  return false;
})
  .end();
   });
/script
/head

body
a href=http://google.com/; class=clickmeI give a message when you 
leave/a

a href=http://yahoo.com/; class=hidemeClick me to hide!/a
a href=http://microsoft.com/;I'm a normal link/a
/body
/html


Meburke escribió:

The example for Chainability works fine in IE6 and Mozilla, but does
not work in Firefox (2.0.0.3). When I click on the jquery no alert
shows up and I just get a new tab to the jquery site, when I click on
the You are now leaving the site. link, it opens up another tab, and
the same things happen when I click on the other two links. I
uninstalled NoScript, but that didn't help. I enabled pop-ups but that
didn't help. I specifically have JavaScript enabled in the options, so
I don't know what the difference may be with Firefox.

This is a great tool, and I simply want to find out what's happening
so I can warn users from the web page to review their settings. Does
anyone have any suggestions?

Thank you,

Mike B.


  



--
Best Regards,
José Francisco Rives Lirola sevir1ATgmail.com

SeViR CW · Computer Design
http://www.sevir.org
 
Murcia - Spain




[jQuery] Re: Tutorial example problem with Firefox?

2007-05-15 Thread SeViR


I check the example in Firefox 2.0.0.3 and it works for me. This is my 
sample

code:

!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
meta http-equiv=Content-Type content=text/html; charset=iso-8859-1 /
titleDocumento sin tiacute;tulo/title
script type=text/javascript src=jquery.js/script
script type=text/javascript
   $(document).ready(function(){
$(a)
  .filter(.clickme)
.click(function(){
  alert(You are now leaving the site.);
})
  .end()
  .filter(.hideme)
.click(function(){
  $(this).hide();
  return false;
})
  .end();
   });
/script
/head

body
a href=http://google.com/; class=clickmeI give a message when you 
leave/a

a href=http://yahoo.com/; class=hidemeClick me to hide!/a
a href=http://microsoft.com/;I'm a normal link/a
/body
/html


Meburke escribió:

The example for Chainability works fine in IE6 and Mozilla, but does
not work in Firefox (2.0.0.3). When I click on the jquery no alert
shows up and I just get a new tab to the jquery site, when I click on
the You are now leaving the site. link, it opens up another tab, and
the same things happen when I click on the other two links. I
uninstalled NoScript, but that didn't help. I enabled pop-ups but that
didn't help. I specifically have JavaScript enabled in the options, so
I don't know what the difference may be with Firefox.

This is a great tool, and I simply want to find out what's happening
so I can warn users from the web page to review their settings. Does
anyone have any suggestions?

Thank you,

Mike B.


  



--
Best Regards,
José Francisco Rives Lirola sevir1ATgmail.com

SeViR CW · Computer Design
http://www.sevir.org
 
Murcia - Spain




[jQuery] Re: Tutorial example problem with Firefox?

2007-05-14 Thread Bil Corry


Meburke wrote on 5/14/2007 4:58 AM: 

The example for Chainability works fine in IE6 and Mozilla, but does
not work in Firefox (2.0.0.3).


Which specific example are you referring to?


- Bil