[jQuery] PEAR using jQuery...

2007-03-27 Thread Clodelio C. Delfino
Just wanted to share... c,) knock..knock, Rey kindly add to the site
list in case not yet included.

excerpt:

Anyways, the first point I wanted to make in this post was:
- http://pear.php.net is now using jQuery for some sections of the
administration area in order to view user notes/comments and that I
will be starting implementing more sections over the site within the
next few weeks (Of course this will all be done once we have split the
code completely into templates, views, controllers, MDB2 move, etc)


link:
http://blog.agoraproduction.com/index.php?/archives/31-PEAR-is-using-jQuery-et-new-features.html

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] $.cookie expires problem...Help!

2007-02-22 Thread Clodelio C. Delfino
Thanks Klaus for the reply...i did notice the diff cookie name..arg,
my fault.Anyway, your cookie plugin helps a lot...Cheers.

Regards,
cdelfino

On 2/22/07, Klaus Hartl [EMAIL PROTECTED] wrote:
 Clodelio C. Delfino schrieb:
  Hi All,
 
  $.cookie('my_cookie','',{expires: -1}) doesn't seem to work in FF2.0
  and Opera 9 but working well in IE 6/7 browser.
 
  May I ask how to ensure that my_cookie is assured
  deleted/removed...thanks in advance.
 
  Btw, below is a snippet of code.
  $(function() {
$(#div_logout).click(function() {
var cuser = $.cookie('my_cookie');
  var lgout_msg = Logout user  + cuser +  from the system?;
 
  if (confirm(lgout_msg))
  {
alert(cuser +  was succesfully logged out.);
 
  $.cookie('sjo_cookie','',{expires: -1});
 
  $(.jqmClose).click();
 
  location.reload();
  }
 
  return false;
});
  });
 
  Cheers,
  cdelfino

 Are you sure you are using the correct cookie name when deleting? You
 are using two different cookies here (my_cookie and sjo_cookie) but
 I cannot see where they are saved in this code...

 -- Klaus

 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] $.cookie expires problem...Help!

2007-02-21 Thread Clodelio C. Delfino
Hi All,

$.cookie('my_cookie','',{expires: -1}) doesn't seem to work in FF2.0
and Opera 9 but working well in IE 6/7 browser.

May I ask how to ensure that my_cookie is assured
deleted/removed...thanks in advance.

Btw, below is a snippet of code.
$(function() {
$(#div_logout).click(function() {
var cuser = $.cookie('my_cookie');
var lgout_msg = Logout user  + cuser +  from the system?;

if (confirm(lgout_msg))
{
alert(cuser +  was succesfully logged out.);

$.cookie('sjo_cookie','',{expires: -1});

$(.jqmClose).click();

location.reload();
}

return false;
});
});

Cheers,
cdelfino

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] $.cookie expires problem...Help!

2007-02-21 Thread Clodelio C. Delfino
Thanks Jake for the reply, but below codes works for me now...in both
ie,ff and opera.

$(#div_logout).click(function() {
var cuser = $.cookie('my_cookie');
var lgout_msg = Logout user  + cuser +  from the system?;

if (confirm(lgout_msg))
{
alert(cuser +  was succesfully logged out.);

if ($.browser.msie)
{
$.cookie('my_cookie','',{expires: -1});
}
else
{
document.cookie = my_cookie=''; expires=Sun, 01
Jan 1970 00:00:01 UTC; path=/
}


$(.jqmClose).click();

location.reload();
}

return false;
});

On 2/22/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote:
 Cookies get sticky when you alternate www.somewhere.org and
 somewhere.org, and you haven't specified the domain for the cookies.

 let's say you set one on somewhere.com then try to clobber it from
 www.somewhere.com you can get into trouble,

 this is just general cookie advice. not sure if your cookie has domain 
 problems.

 On 2/21/07, Clodelio C. Delfino [EMAIL PROTECTED] wrote:
  Hi All,
 
  $.cookie('my_cookie','',{expires: -1}) doesn't seem to work in FF2.0
  and Opera 9 but working well in IE 6/7 browser.
 
  May I ask how to ensure that my_cookie is assured
  deleted/removed...thanks in advance.
 
  Btw, below is a snippet of code.
  $(function() {
  $(#div_logout).click(function() {
  var cuser = $.cookie('my_cookie');
  var lgout_msg = Logout user  + cuser +  from the system?;
 
  if (confirm(lgout_msg))
  {
  alert(cuser +  was succesfully logged out.);
 
  $.cookie('sjo_cookie','',{expires: -1});
 
  $(.jqmClose).click();
 
  location.reload();
  }
 
  return false;
  });
  });
 
  Cheers,
  cdelfino
 
  ___
  jQuery mailing list
  discuss@jquery.com
  http://jquery.com/discuss/
 


 --
 Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] $.cookie expires problem...Help!

2007-02-21 Thread Clodelio C. Delfino
Nope it doesn't work...using -100 days.

On 2/22/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote:
 well it's not my birthday... but I understand that it works... without
 going thru how the cookie was made (the plugin) I know that arbitrary
 older dates always work. It may be a time zone thing or something else
 that is weird! did you ever try -100 days to see if that kills the
 cookie?


 On 2/21/07, Clodelio C. Delfino [EMAIL PROTECTED] wrote:
  Thanks Jake for the reply, but below codes works for me now...in both
  ie,ff and opera.
 
  $(#div_logout).click(function() {
  var cuser = $.cookie('my_cookie');
  var lgout_msg = Logout user  + cuser +  from the system?;
 
  if (confirm(lgout_msg))
  {
  alert(cuser +  was succesfully logged out.);
 
  if ($.browser.msie)
  {
  $.cookie('my_cookie','',{expires: -1});
  }
  else
  {
  document.cookie = my_cookie=''; expires=Sun, 01
  Jan 1970 00:00:01 UTC; path=/
  }
 
 
  $(.jqmClose).click();
 
  location.reload();
  }
 
  return false;
  });
 
  On 2/22/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote:
   Cookies get sticky when you alternate www.somewhere.org and
   somewhere.org, and you haven't specified the domain for the cookies.
  
   let's say you set one on somewhere.com then try to clobber it from
   www.somewhere.com you can get into trouble,
  
   this is just general cookie advice. not sure if your cookie has domain 
   problems.
  
   On 2/21/07, Clodelio C. Delfino [EMAIL PROTECTED] wrote:
Hi All,
   
$.cookie('my_cookie','',{expires: -1}) doesn't seem to work in FF2.0
and Opera 9 but working well in IE 6/7 browser.
   
May I ask how to ensure that my_cookie is assured
deleted/removed...thanks in advance.
   
Btw, below is a snippet of code.
$(function() {
$(#div_logout).click(function() {
var cuser = $.cookie('my_cookie');
var lgout_msg = Logout user  + cuser +  from the system?;
   
if (confirm(lgout_msg))
{
alert(cuser +  was succesfully logged out.);
   
$.cookie('sjo_cookie','',{expires: -1});
   
$(.jqmClose).click();
   
location.reload();
}
   
return false;
});
});
   
Cheers,
cdelfino
   
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/
   
  
  
   --
   Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
   ___
   jQuery mailing list
   discuss@jquery.com
   http://jquery.com/discuss/
  
  ___
  jQuery mailing list
  discuss@jquery.com
  http://jquery.com/discuss/
 


 --
 Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] ANN: Brandon Aaron Joins learningjquery.com

2007-02-01 Thread Clodelio C. Delfino
Karl, this is indeed a good news...cheers c,)

On 2/2/07, Brian Miller [EMAIL PROTECTED] wrote:
 You know...  The folks over at Mootools refer to theirs as Mootorials.
 Maybe we should call them jQ-torials?  :)

 - Brian


  Hello dear friends,
 
  Just a quick note to announce that Brandon Aaron -- regular
  contributor to this list, member of the jQuery development team, and
  plugin author -- has agreed to join me in publishing tutorials on
  learningjquery.com. He will focus on intermediate- and advanced-level
  topics.
 
  Check out his first entry, posted last night, about his cloneEvents()
  plugin:
  Copy Events from One Element to Another
  http://www.learningjquery.com/2007/01/copy-events-from-one-element-to-
  another
 
  He also has some great ideas for redesigning the site and enhancing
  it with jQuery magic.
 
  Stay tuned for more from Brandon coming your way!
 
  Cheers,
  --Karl
  _
  Karl Swedberg
  www.englishrules.com
  www.learningjquery.com


 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Introduction to Firebug and jQuery, Screencast

2007-01-26 Thread Clodelio C. Delfino
thanks John... c,)

On 1/27/07, John Resig [EMAIL PROTECTED] wrote:
 A new screencast is up that takes an introductory look at using the
 Firebug Firefox Extension and jQuery together - combining the two to
 build a reusable bookmarklet that can manipulate Digg Posts and
 Comments.

 The screencast is 14:39 Minutes long and 59MB:
 http://ejohn.org/blog/hacking-digg-with-firebug-and-jquery/

 If you enjoyed this screencast, don't forget to Digg it up!
 http://digg.com/programming/Hacking_Digg_with_Firebug_and_jQuery;Digg it up!

 --John

 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Beginner needs help - Basics

2007-01-24 Thread Clodelio C. Delfino
can't find in your code where a is attached to... c,)

On 1/24/07, Johannes Theile [EMAIL PROTECTED] wrote:

 Hi,
 I came across jQuery, I thinks I might like it, but I'm unable to try it
 out.

 I downloaded the uncompressed version and just cp one of the examples from
 the Wiki. But nothing happens. I tried it with various browsers on two
 systems, but nothing works. So I thinks that I'm doing a general mistake.
 Maybe someone could check the code below.

 #
 html
 head
 script type=text/javascript src=jquery.js/script
 script type=text/javascript

 $(a).click(function(){
 alert(Thanks for visiting!);
 });

 /script
 /head

 body
  # Do something!
 /body
 /html
 #

 jQuery is in the same folder as my html page is.

 Any help is appreciated.

 Regards,
 Johannes
 --
 View this message in context: 
 http://www.nabble.com/Beginner-needs-help---Basics-tf3080171.html#a8557894
 Sent from the JQuery mailing list archive at Nabble.com.


 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Interface 1.1

2007-01-15 Thread Clodelio C. Delfino
Thanks Stefan and Paul, this is good news for interface users like me...cheers.

cdelfino

On 1/15/07, Stefan Petre [EMAIL PROTECTED] wrote:
 Hi,

 Paul and I, with help from many jQuery developers, put together a new
 release of Interface. It has a number of new features, new plugins,
 speed improvements, nice demos, and improved documentation (there's
 still a lot to improve there). If you would like to learn more about the
 1.1 release of Interface, check out our brand-new news section as well
 as the updated changelog!.

 http://interface.eyecon.ro

 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] Drupal 5.0 released!!! Hear ye..hear ye...

2007-01-15 Thread Clodelio C. Delfino
http://drupal.org/drupal-5.0

excerpt:
JavaScript library: the jQuery JavaScript library has been included in
Drupal 5. All existing JavaScript in Drupal core has been converted to
use it.

Cool... c,)

cdelfino

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] getJquery.org now up

2006-12-08 Thread Clodelio C. Delfino
keep up...but, will the content be a replica of jquery.com or
something different?

i'd suggest that it should contain jQuery in Action(more samples)
using different plugin and how it was implemented...

cheers,
cdelfino

On 12/8/06, digital spaghetti [EMAIL PROTECTED] wrote:

 On 12/8/06, Barry Nauta [EMAIL PROTECTED] wrote:
  Excellent initiative!
 
  Just a small note to tell you that image upload fails:
 
  Cheers,
  Barry
 

 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Get the Firebug 1.0 Beta!

2006-12-04 Thread Clodelio C. Delfino
Thanks Paul for the news...downloading now.. c,)

On 12/4/06, Paul Bakaus [EMAIL PROTECTED] wrote:
 Update: It's on the main page, my page was just cached *dooh*! get it!

 2006/12/4, Paul Bakaus [EMAIL PROTECTED]:
  Hi guys,
 
  great news from Joe! Firebug 1.0 is now in open beta, everyone should be
 able to download it from getfirebug.com today later on (read the blog post).
 I'll stay idle pressing F5 until the link is there ;-)
 
  -Paul
 
  --
  Paul Bakaus
  Web Developer
  
  Hildastr. 35
  79102 Freiburg



 --
 Paul Bakaus
 Web Developer
 
 Hildastr. 35
 79102 Freiburg
 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/




___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] http://blog.joshuaeichorn.com/slides/FunWithJQuery/

2006-11-30 Thread Clodelio C. Delfino
another jquery good news...

http://blog.joshuaeichorn.com/slides/FunWithJQuery/

cheers c,)

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/