abc

Share This blog with your friends, so that we can improve more & more . our aim is to easy & simple way of learning.

4/01/2018

Advanced Session on Jquery language




Connect Laptop To Computer and laptop To TV Connectivity.











hey everyone

today i am going to show what is jquery

jquery has library of javascript. which is very easy programming languages

let us learn some advance of jquery language.

1. what is traversing function in jquery.

$('span').not('.trial, .abc'); this is example of traversing:  traversing means select such span which has not name trial or abc.

2. jquery chaining
as name is chain for method this is basically help to join multiple function to each other.
eg:
 $("#abc").click(function(e) {
 alert("click!");
 }).mouseover(function(e) {
 alert("mouse is here!")
 }).mouseout(function(e) {
 alert("mouse oh!hhh gone")
 });

3. siblings for finding similar  of element

eg:$('h1').siblings();

4. ajax get & post
$('#abc').click(funciton(){
$.get("abc.txt", function(data, status){
        alert("Data: " + data + "\nStatus: " + status);
    });
});

5. please like & share to all
if you have any query please comment.
visit our blog learnmayuinfosyssolutions.blogspot.in .

thanks For Watching.


4 comments:

An Introduction to the Laravel Framework: What It Is and Why You Should Use It

  If you're a PHP developer looking for a modern, efficient, and powerful framework to build web applications, look no further than Lara...