Skip to main content

Try out this exciting exercise in JavaScript js

<!--Javasript can be entertaing -->

<html>

    <head>

        <title>Page Title</title>

        <script language="javascript">

function like(){

         var count=0;
         var liked = false;
         var x = "ALERT!!!"

              lol2.innerHTML=(liked==false)?"    🤓":"🤓";
              lol2.style.display="none";

       
              justCount.innerHTML=lol2.innerHTML + " E-MOTIONS NEED AN E";
              liked = true;
        
              return false;
};

        </script>
 
    </head>

   <body> 
   
        <br />
        <label id="justCount"></label> <br />
        
        <label id="lol" style="font-color:red;font-style:bold;font-height:14"></label><br/>

<div>
        <button id="lol2" align="center" onclick="javascript:like(); display:true;" style="display:inline;" style="width=100%"font-size="width:88%">CLICK ME</button>

</div>
 


    </body>
    
</html>

Comments