How Cute the Jquery is ! With Basic Operation which is lovable – Short Version

1436402652000 jQuery

by Start Bootstrap


Hello, Guys.

We all know the importance of JQuery (though Angular rocks). I can say that JQuery is the step one should learn to have his things done.

Trust me, its simple like air / i can assure that you will love the way i explain you(might be little childish).

The simple step i would say is like this

1. Include the Library

<script src="sysaxiom.com/api/jquery.min.js></script>

2. Define the Input

<div id=''MyTrigger"></div>

 

3. Detect the Input Action – Trigger

<script>
$("#MyTrigger").click(function(){  //Here we can assure that that id with MyTrigger is clicked  })
</script>?

4. Do some operation for Input 

console.log("Boss !!! We got the Input");

5. Define the Output

<div id="MyResult"></div>

6. Show your Output 

$("#MyResult").html("MyTrigger is Clicked");

Fiddle Created for This Demo

1. Console Output –

 

2. HTML Output –