vote up 1 vote down star
<div class="boxen checkedzahlen" id="box41_0_1">
 41
 <input type="checkbox" value="1" name="cb41_0_1" id="cb41_0_1" checked="checked"/>
</div>

Something like this is given, how can i animate the text ("41"), if $(this) <- the class:boxen, is clicked?

this > * does not work, this:children also not...

flag
You need to work on that question. Please post some source code and describe the missing parts. Beside that, on jquery.com, there are examples for such basic things (if I understand you right) – Tim Büthe Oct 29 at 15:04
thx, but didn't get the information from the home of "JQuery" ;) the problem is how you select a text .. at the last dom level. if there would be a span .. no problem. – Sven Klouem Oct 29 at 15:06
$('.boxen').click(function () { if ($(this).hasClass("hello")){ $(this).removeClass("hello"); } else{ $("this > *").animate({ zIndex: "10", fontSize: "28px" },600).animate({ fontSize: "9px", textAlign: "center", zIndex: "0" }); $(this).addClass("hello"); } }); – Sven Klouem Oct 29 at 15:07
how can i turn on syntax highlighting ? – Sven Klouem Oct 29 at 15:07
You still need to clarify. Is the problem that you can't select "41" without also selecting the checkbox? – Bears will eat you Oct 29 at 15:10
show 1 more comment

4 Answers

vote up 1 vote down

In order to select the div, you would use the following:

$('#box41_0_1')

In order to animate the whole box, you could do

$('#box41_0_1').fadeOut().fadeIn();

or some other animation effect.

Edit: If you want to select only the inner text, you could try wrapping the inner text with a div, but with the code you provided, that would also select the checkbox I believe. Code example:

$('#box41_0_1').wrapInner("<span id='span41_0_1'></span>");
$('#span41_0_1').fadeOut().fadeIn();
link|flag
it's not the problem to select the box, or how to animate it. the problem is, just to get the z-Index on the "41". -> the text inside the div, if i animate the whole thing, things like the border also get the new zIndex. – Sven Klouem Oct 29 at 15:11
If you're only looking to select the z-index, "41" will have the same z-index as its parent div. – Bears will eat you Oct 29 at 15:11
thats the problem.. i just want to set the zindex to the numbers.. without printing a span arround.. – Sven Klouem Oct 29 at 15:16
@Sven I don't believe that is possible. I think you can only set the z-index of an actual element, not it's text. – Topher Fangio Oct 29 at 21:40
vote up 0 vote down

try to brake it down. how to select text inside a div, which is not inside a span or div...

link|flag
vote up 0 vote down

$("#divID").html() would get the text inside.

link|flag
$("#divID").html().animate({ .. . ? – Sven Klouem Oct 29 at 15:30
vote up 0 vote down

You could wrap the contents of the div in a span and then move the input outside of that span. Then you can animate the span. Something like this:

$('.boxen').each(function() {
  var $thisBox = $(this);
  $thisBox.wrapInner('<span></span>');
  $thisBox.find('input').appendTo($thisBox);
});

$('.boxen span').animate({fontSize: '28px'}, 400);

You could also mix and match straight DOM scripting with jQuery, like so:

$('.boxen').each(function() {
  var newSpan = document.createElement('span');
  newSpan.innerHTML = this.firstChild.nodeValue;
  this.firstChild.nodeValue = '';
  $(this).prepend(newSpan);
});

$('.boxen span').animate({fontSize: '28px'}, 400);

Either way should work.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.