[jQuery] unsubscribe

2009-02-02 Thread diego valobra

[jQuery] unsubscrive

2009-02-01 Thread diego valobra

[jQuery] unsubscrive

2009-02-01 Thread diego valobra
-- Diego Valobra pirolab WebDesign Roma

R: [jQuery] Merry Xmass

2008-12-24 Thread diego valobra
Merry Xmas to all the _jQueryans_ of the world from Italy :) Diego Valobra --- Mer 24/12/08, Lukas Polak polak.luka...@gmail.com ha scritto: Da: Lukas Polak polak.luka...@gmail.com Oggetto: [jQuery] Merry Xmass A: jQuery - mailinglist - general jquery-en@googlegroups.com Data: Mercoledì 24

[jQuery] URGENT, URGENTE

2008-12-03 Thread diego valobra
-MAIL TO GET TO KNOW ABOUT. COPY THIS TEXT and send to ALL YOUR friends.. -- Diego Valobra pirolab WebDesign Roma

[jQuery] Re: non-programmer

2008-11-16 Thread diego valobra
Hi ncriptide, take a look at these links, http://en.wikipedia.org/wiki/JavaScript http://www.w3schools.com/js/default.asp maybe useful Diego 2008/11/16 ncriptide [EMAIL PROTECTED] I've been a graphic designer for the past 25 years. Only programming I know is HTML and a little CSS. I'm

[jQuery] R: [jQuery] $(this).next() doesn't work

2008-11-07 Thread diego valobra
I forgot to say that i need to use $('.first li a').bind('click',function() 'couse with the  var pathImg = $(this).attr('href'); i get the href of the clicked element. Diego --- Ven 7/11/08, diego [EMAIL PROTECTED] ha scritto: Da: diego [EMAIL PROTECTED] Oggetto: [jQuery] $(this).next()

[jQuery] Re: $(this).next() doesn't work

2008-11-07 Thread diego valobra
Rik, tnx you gave me the right inputi'm solving it Diego 2008/11/7 Rik Lomas [EMAIL PROTECTED] You need to do: $(this).parent().next().addClass('second'); As the element the click is attached to is the a, so you need to traverse up the DOM tree first Rik 2008/11/7 diego [EMAIL

[jQuery] R: [jQuery] search for text and replace or remove the element entirely

2008-11-03 Thread diego valobra
Hi devin, see if this could be what you'r looking for: http://docs.jquery.com/Selectors/contains#text Diego --- Lun 3/11/08, Devin [EMAIL PROTECTED] ha scritto: Da: Devin [EMAIL PROTECTED] Oggetto: [jQuery] search for text and replace or remove the element entirely A: jQuery (English)

[jQuery] Re: onclick change class to new class

2008-10-30 Thread diego valobra
Hi Anton, $('#gt').click(function() { //-- # this is wrong, you don't have a gt #id but a gt.class so you have to change #gt in .gt $(this).removeClass(gt); $(this).addClass(gt_active); }); this should work: $('.gt').click(function() {

[jQuery] R: [jQuery] Re: Need help !!! $.preloadCssImages is not a function

2008-10-29 Thread diego valobra
Hi Erik, try to remove all the mootools.js, probably there's a conflict. Diego --- Mer 29/10/08, ricardobeat [EMAIL PROTECTED] ha scritto: Da: ricardobeat [EMAIL PROTECTED] Oggetto: [jQuery] Re: Need help !!! $.preloadCssImages is not a function A: jQuery (English) jquery-en@googlegroups.com

[jQuery] R: [jQuery] Re: Loading Mask

2008-10-16 Thread diego valobra
Hi, take a look at this http://www.filamentgroup.com/lab/update_automatically_preload_images_from_css_with_jquery/ Diego --- Gio 16/10/08, Donald J. Organ IV [EMAIL PROTECTED] ha scritto: Da: Donald J. Organ IV [EMAIL PROTECTED] Oggetto: [jQuery] Re: Loading Mask A: jquery-en@googlegroups.com

[jQuery] R: [jQuery] Only show div's within parent.

2008-10-05 Thread diego valobra
Hi, another example.. $(document).ready(function(){      $('.hidden').hide(0) // just if you want all items closed at the beginning       $('a.show').click(function () {                    $('.hidden').slideUp('fast') // just if you want a kind of accordion            

[jQuery] R: [jQuery] R: [jQuery] Re: Show image gradually

2008-09-30 Thread diego valobra
  div id=headernav    ul id=navlist   lia href=/ title=oneHome/aspan id=one/span/li   lia href=/support title=twoSupport/aspan id=two/span/li   lia href=/contact title=threeContact/aspan id=three/span/li    /ul   /div /body /html Ciao --- Mar 30/9/08, diego valobra [EMAIL PROTECTED

[jQuery] R: [jQuery] Re: Show image gradually

2008-09-30 Thread diego valobra
? Thanks! On Sep 30, 2:49 am, diego valobra [EMAIL PROTECTED] wrote: Hi, you can try this code, !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd; html xmlns=http://www.w3.org/1999/xhtml; head script src=http://code.jquery.com/jquery

[jQuery] Show image gradually

2008-09-30 Thread diego valobra
at bottom but remove the color until top.. I need to start at bottom and add the color :) On Sep 30, 3:19 pm, diego valobra [EMAIL PROTECTED] wrote: i had to change the css, actually does'nt work with ie now works and is: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN http://www.w3.org/TR

[jQuery] R: [jQuery] Show image gradually

2008-09-30 Thread diego valobra
Always IE(fu#g browser) you have to add at the css rule #headernav ul li: position:relative; and it works with ie too diego --- Mar 30/9/08, diego valobra [EMAIL PROTECTED] ha scritto: Da: diego valobra [EMAIL PROTECTED] Oggetto: [jQuery] Show image gradually A: jquery-en@googlegroups.com

[jQuery] R: [jQuery] Re: R: [jQuery] Show image gradually

2008-09-30 Thread diego valobra
Ciao Giovanni, some times it's good to understand the basic function of jQuery without using plugins..that's what i was trying to do :) if u never study u never lern!! regards Diego --- Mar 30/9/08, Giovanni Battista Lenoci [EMAIL PROTECTED] ha scritto: Da: Giovanni Battista Lenoci [EMAIL

[jQuery] R: [jQuery] Re: R: [jQuery] Re: R: [jQuery] Show image gradually

2008-09-30 Thread diego valobra
Lenoci [EMAIL PROTECTED] ha scritto: Da: Giovanni Battista Lenoci [EMAIL PROTECTED] Oggetto: [jQuery] Re: R: [jQuery] Re: R: [jQuery] Show image gradually A: jquery-en@googlegroups.com Data: Martedì 30 settembre 2008, 17:24 diego valobra ha scritto: Ciao Giovanni, some times it's good to understand

[jQuery] Re: Show image gradually

2008-09-29 Thread diego valobra
Hi, you can try this code, !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd; html xmlns=http://www.w3.org/1999/xhtml; head script src=http://code.jquery.com/jquery-latest.js;/script script type=text/javascript $(document).ready(function(){

[jQuery] R: [jQuery] mouseover / mouseout

2008-09-27 Thread diego valobra
Ifixer try this $('a.view').css('opacity',0.33); $('a.view').hover(function() {     $(this).stop().animate({     opacity : 1     }, 600);     },     function(){     $(this).stop().animate({     opacity : 0.33     }, 800); }); Diego Valobra --- Sab 27/9/08, eewan

[jQuery] R: [jQuery] Re: Anyone know why mouse position inside div is different in Firefox and IE

2008-09-03 Thread diego valobra
Your example works with ie too--  http://www.pirolab.it/jtb/testclick.php i've just added  margin 0 and padding 0  at the div and the offset now works correctly ciao Diego --- Mer 3/9/08, Hamid [EMAIL PROTECTED] ha scritto: Da: Hamid [EMAIL PROTECTED] Oggetto: [jQuery] Re: Anyone know why

[jQuery] R: [jQuery] Re: Anyone know why mouse position inside div is different in Firefox and IE

2008-09-03 Thread diego valobra
Sorry i made a mistakeit works with the margin 0 and the padding 0 given at the body.. Diego --- Mer 3/9/08, Hamid [EMAIL PROTECTED] ha scritto: Da: Hamid [EMAIL PROTECTED] Oggetto: [jQuery] Re: Anyone know why mouse position inside div is different in Firefox and IE A: jQuery (English)

[jQuery] Re: [ $(document).ready ] it doesn't work with HTML loaded dynamically

2008-08-26 Thread diego valobra
Hi , i had the same problem and i solved it including the function you need in the loaded page like this: first page: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd; html xmlns=http://www.w3.org/1999/xhtml; head titleTest/title