Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 15th, 2012  |  syntax: JavaScript  |  size: 0.36 KB  |  hits: 18  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. $(#mojdiv).find('p').each(function(){
  2.                         var
  3.                                 meno = $(this).find('meno').text(),
  4.                                
  5.                                 text =  'toto je text',
  6.                                 level = $(this).attr("level");
  7.                         $('<div></div>').html(text
  8.                        
  9.                         ).appendTo('#container');
  10.                        
  11.                   if(level==5){$('#container div').css({color:'red'}) }; //POTREBUJEM, ABY PRIDALO CERVENU FARBU LEN DANEMU DIVU, A NIE VSETKYM
  12.                                
  13.                         });