[jQuery] unsubscribe

2009-02-02 Thread diego valobra

[jQuery] unsubscrive

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

[jQuery] unsubscrive

2009-02-01 Thread diego valobra

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 ha scritto: Da: Lukas Polak Oggetto: [jQuery] Merry Xmass A: "jQuery - mailinglist - general" Data: Mercoledì 24 dicembre 2008, 14:20 Hi everybody, I don't want you i

[jQuery] URGENT, URGENTE

2008-12-03 Thread diego valobra
e vital information of its function are preserved.> SEND THIS E-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

[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 , so you need to > traverse up the DOM tree first > > Rik > > > 2008/11/7 di

[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() d

[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)" Data

[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)" Data: Mercoledì 29 otto

[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.c

[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             $(this).next('div')

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

2008-09-30 Thread diego valobra
ovanni Battista 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 Gio

[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] 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

[jQuery] Show image gradually

2008-09-30 Thread diego valobra
irection ? Something like this menu : www.antena1.ro ? i need to start at bottom and show gradually until top. Now the script start 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

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

2008-09-30 Thread diego valobra
> ha scritto: Da: yo2lux <[EMAIL PROTECTED]> Oggetto: [jQuery] Re: Show image gradually A: "jQuery (English)" Data: Martedì 30 settembre 2008, 11:25 Hi, Thanks for your help! The code is amazing, but I have some issue: 1. Please visit this page: http://progra.ro/zoliky/slid

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

2008-09-30 Thread diego valobra
rgin-top:-30px; z-index:999 }   #headernav ul li a { padding:0px; font-weight: bold; width:120px; height:30px; display:block; font-family: tahoma, arial; color: #fff; position:relative; z-index:1000 }   #headernav ul li a:hover { padding:0px; font-weight: bold;height:30px; display:block;  font-family

[jQuery] Re: Show image gradually

2008-09-29 Thread diego valobra
Hi, you can try this code, http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";> http://www.w3.org/1999/xhtml";> http://code.jquery.com/jquery-latest.js";> $(document).ready(function(){ //no slide effects added!! just pure jQuery $('.parent').hover(function () { //start the hover f

[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 V

[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 (Englis

[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] 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: http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";> http://www.w3.org/1999/xhtml";> Test $(document).ready(function() { // to load the content.html