Hello guys.
 
Newbie here, so sorry if this has been mentioned before. 
 
I'm trying to apply a fadein effect to a span which has text. Here's the
html:
 
<a class="menuItem" id="location"  href="template3.htm">
          <img src="images/location.jpg" alt="Find us" />
          <span>Location</span>
        </a>
 
And here's the code I'm applying to change the opacity:
 
$("a.menuItem img").css("opacity", .5);
$("a.menuItem span").css("opacity", .5);
 
The problem: if I have a hexadecimal defined color (differente from the
"basic" colors - ex.: red, white, etc) the text isn't shown. It will only
appear on the mouse over event because during it I change the opacity from
.9 to .9. Has anyone seen this in the past?
 
Thanks and sorry for the poor English.
 
-- 
Regards,
Luis Abreu
email: labreu_at_gmail.com
PT Blog: http://weblogs.pontonetpt.com/luisabreu
EN Blog:http://msmvps.com/blogs/luisabreu/default.aspx
http://www.pontonetpt.com
MVP profile: http://mvp.support.microsoft.com/profile/luis.abreu
 
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Kevin Pepperman
Sent: segunda-feira, 7 de Julho de 2008 22:48
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: How to replace a div content?
 
Try setting the div html to empty first.
 
jQuery("#elem").html("").html('<b>my text</b>');
On Mon, Jul 7, 2008 at 10:04 AM, SimDigital <[EMAIL PROTECTED]> wrote:

How could i replace a html content inside the div?

I have 1 div (<div id="elem">ini text</div>) and everytime i click a
button, i want to replace the html content inside the #ELEM to new
one.

I try to use:

jQuery("#button").click(function() {
       jQuery("#elem").html('<b>my text</b>');
});

but everytime i click the button, the html is not replaced, resulting
something like:

 <b>my text</b><b>my text</b>

What is the solution?



-- 
Paul Lynde  - "I sang in the choir for years, even though my family belonged
to another church." 
No virus found in this incoming message.
Checked by AVG - http://www.avg.com
Version: 8.0.138 / Virus Database: 270.4.6/1538 - Release Date: 07-07-2008
07:40

Reply via email to