Jquery JavaScript DHTML


  
    
    
        $(document).ready(function(){
           $("div").one('click', function () {
              if ($(this).is(":contains('asdf')")) {
                $("p").text("It's the asdf div.");
              }else{
                $("p").text("It's NOT the asdf div.");
              }
              $("p").hide().slideDown("slow");
              
           });
        });
    
  
  
    
      Press each to see the text.
      
asdf

      
sdf

      
df

      
sdf

      
asdf

      
asdf