jQuery Element Selector

jQuery Element Selector

kudvenkat

9 лет назад

199,668 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@tuanphamvan655
@tuanphamvan655 - 16.02.2022 14:05

great!

Ответить
@adilmohak
@adilmohak - 07.04.2021 12:45

ello 😜😜, thanks a lot

Ответить
@mostafaanssary6135
@mostafaanssary6135 - 14.08.2020 18:09

very important note in jquery-3.5.1 $('tr').css('background-color', 'red'); color c letter is small not C

Ответить
@gouravsingh4670
@gouravsingh4670 - 08.08.2019 20:24

How can I get another webpage (page 2) div content in page 1 with jQuery?

Ответить
@flowbrandz316
@flowbrandz316 - 19.07.2019 22:22

Great tutorials! Explained well and easy to understand.

Ответить
@Deepakkumarannam
@Deepakkumarannam - 30.04.2019 05:09

Thank you for the detailed Explanation. I have a doubt regarding this.. How can we change 2 or more properties for the same html element.

Ответить
@nargeesansari6337
@nargeesansari6337 - 15.11.2018 04:57

All videos are very nice .. very well explained .. thank u so much .

Ответить
@deepalisingh5316
@deepalisingh5316 - 15.08.2018 09:30

Thank you Sir :)

Ответить
@rishirajrai8805
@rishirajrai8805 - 08.08.2018 17:38

best video tutorials for jQuery.... thanks

Ответить
@kalyaniponvadivoo5919
@kalyaniponvadivoo5919 - 30.05.2018 13:58

You are awesome

Ответить
@jaydee3807
@jaydee3807 - 12.05.2018 23:01

With out a doubt the best videos with an in depth explanation on jQuery any where on the Internet, greetings from South Wales in the UK.

Ответить
@izzatullokanoatov370
@izzatullokanoatov370 - 04.05.2018 00:31

Great videos. Thank you for such a contribution.

Ответить
@alfakumarpanda8017
@alfakumarpanda8017 - 09.02.2018 23:55

where can i find your blogs , as i want the html to try by myself

Ответить
@aleksandarbujaroski9267
@aleksandarbujaroski9267 - 24.12.2017 22:44

Finally someone with complete explanation, thank you very much!

Ответить
@rabinawale9605
@rabinawale9605 - 21.11.2017 18:18

worth watching nice video love it

Ответить
@hendesebilisim
@hendesebilisim - 14.06.2017 17:40

Thank you sir

Ответить
@tomeksimba5687
@tomeksimba5687 - 29.03.2017 16:09

you're amazing ! Thanks for all your videos !

Ответить
@MarcosAurelio-rw2is
@MarcosAurelio-rw2is - 25.03.2017 20:37

exatamente o que eu estava procurando, muito obrigado

Ответить
@sudhansusabat5062
@sudhansusabat5062 - 11.03.2017 10:42

Amazing Videos ,I have followed all ur dot net videos and found its worth watching.........................thanks

Ответить
@ravichandranaikanavre1561
@ravichandranaikanavre1561 - 27.02.2017 16:17

Thanks Sir, I learnt a lot of from you videos.

Ответить
@muhammadsalman3074
@muhammadsalman3074 - 19.02.2017 19:27

first time i seen video that no dislike for it these are really good videos Masha Allah

Ответить
@muhammadhasansiddiqui6017
@muhammadhasansiddiqui6017 - 15.02.2017 01:42

ellow :D

Ответить
@mryoutuser
@mryoutuser - 15.01.2017 01:01

<b> great </b>

Ответить
@mayankmaurya8028
@mayankmaurya8028 - 08.01.2017 21:26

for those who dont understand if sir has changed even row to grey why 1row 3rd row and so on is grey
because index start from from zero so first row is actually zero second is 1 third is two and so on...

Ответить
@harshmlangalia6114
@harshmlangalia6114 - 10.10.2016 03:32

I wish to implement CTRL+ F search functionality highlighting text found on my web page , how can i do it please?

Ответить
@mayankparihar1988
@mayankparihar1988 - 07.10.2016 00:04

Thanks a Lot.. Best JQuery Material available on web :)

Ответить
@elitestubborn2146
@elitestubborn2146 - 19.06.2016 18:14

Your videos are making me professional day by day
Really Helpful. Thanks for your precious time for us

Ответить
@TheFallibleFiend
@TheFallibleFiend - 07.04.2016 16:55

Excellent.video and series.

Ответить
@marioaguilar7373
@marioaguilar7373 - 30.12.2015 01:35

Thanks a lot for your videos. (from Mexico)

Ответить
@rajmohan8030
@rajmohan8030 - 09.11.2015 02:56

Thank you Mr.Venkat. I've just started learning jQuery. Pl. help me when I have doubts

Ответить
@elmokhtarsafa1581
@elmokhtarsafa1581 - 30.09.2015 02:05

i'm so grateful for all your videos

Ответить
@ShahadBajpeMoidin
@ShahadBajpeMoidin - 30.07.2015 13:04

the best ever tutorials i have ever seen.. Great Effort Mr Venkat.. Wish i could have multiple like buttons to give Likes to your videos. I am like addicted to your learning videos. Keep it up.

Ответить
@lawviktor7610
@lawviktor7610 - 25.07.2015 16:02

I think the 2nd table in this video was changed by the opposite way..., even rows are colored by grey...but odd rows are colored by yellow......there's something wrong??

Ответить
@lawviktor7610
@lawviktor7610 - 25.07.2015 14:34

<script>
(function(){
var dd = $('dd');
dd.filter(':nth-child(n+4)').addClass('hide');

$('dl').on('mouseenter','dt',function(){
$(this)
.next()
.slideDown(200)
.siblings('dd')
.slideUp(700);

$('dd').on('mouseleave',function(){
$(this)
//.siblings('dd')
.slideUp(700);

});
});

$("#frontPagebutton").click(function(){
calcRotation(0);
});
$("#sendExpress").click(function(){
calcRotation(90);
});
$("#expressSearch").click(function(){
calcRotation(180);
});
$("#expressAgentSearch").click(function(){
calcRotation(270);
});
function calcRotation(rot){
$("#trcube").css("transform", "rotateY(-" + rot + "deg)");
}
    

// var rota=180;

//class list:
//.plus90
//.minus90
//.plus180
//.minus180
//.plus270
//.minus270

// $('#frontPagebutton').on('click', function(){
// var rota=180;
// if(rota==90){
// alert('From Search Agent to Frontpage, Search Agent Page rota= ' + rota);

//$("#trdcube").one('webkitAnimationEnd oAnimationend msAnimationEnd animationend',   
//function(e){
// code to execute after animation ends
//$("#trdcube").removeClass('plus90 minus90 plus180 minus180 plus270 minus270');
//});
// rota=rota+90;

// $('#trdcube').addClass('minus90');

// alert('Frontpage, Rota is: ' + rota);

// }else if(rota==180){
//!!!!!!!!!!!!!!!!this is the front page!!!!!!!!!!
// $("#trdcube").removeClass('plus90 minus90 plus180 minus180 plus270 minus270');
// rota=rota;
// alert('The rota is: ' + rota + '!! This is the front page dude!!');

// }else if(rota==270){
// alert('From Send a Parcel Page to Frontpage, Send a Parcel Page rota= ' + rota);

// $("#trdcube").one('webkitAnimationEnd oAnimationend msAnimationEnd animationend',   
// function(e){
// code to execute after animation ends
// $("#trdcube").removeClass('minus90 plus90 plus180 minus180 plus270 minus270');

//});
// rota=rota-90;

// $('#trdcube').addClass('plus90');

// alert('Frontpage, Rota is: ' + rota);

// }else if (rota==360){
// alert('From Search a Parcel Page to Frontpage, Search a Parcel Page rota= ' + rota);

//$("#trdcube").one('webkitAnimationEnd oAnimationend msAnimationEnd animationend',   
//function(e){
// code to execute after animation ends
//$("#trdcube").removeClass('plus90 minus90 minus180 plus180 minus270 plus270');

//});
// rota=rota-180;

// $('#trdcube').addClass('plus180');

// alert('Frontpage, Rota is: ' + rota);
// }else{
// alert('*_*!!');
// };
// }); //front page end

// send express page 270
// $('#sendExpress').on('click', function(){
// if(rota==90){
// alert('From Search for an Agent Page to Send a Parcel, Search for an Agent Page rota= ' + rota);
//$("#trdcube").one('webkitAnimationEnd oAnimationend msAnimationEnd animationend',   
//function(e){
// code to execute after animation ends
//$("#trdcube").removeClass('minus90 plus90 minus180 plus180 plus270 minus270');
//});
// rota=rota+180;

// $('#trdcube').addClass('plus180');

// alert('Send Parcel page! Rota is: ' + rota);

// }else if(rota==180){
// alert('From Frontpage to Send a Parcel, Frontpage rota= ' + rota);
//$("#trdcube").one('webkitAnimationEnd oAnimationend msAnimationEnd animationend',   
// function(e){
//code to execute after animation ends
// $("#trdcube").removeClass('plus90 plus180 minus180 plus270 minus270');
//});
// rota=rota+90;

// $('#trdcube').addClass('minus90');

// alert('Send a Parcel Page! Rota is: ' + rota);

// }else if(rota==270){
//!!!this is the send a parcel page !!!!!!!!!!!!!!!!!!!
// $("#trdcube").removeClass('plus90 minus90 plus180 minus180 plus270 minus270');
// rota=rota;
// alert('now the rota is: ' + rota + ' ' + 'This is the Send parcel Page Dude!!!');

// }else if(rota==360){
// alert('From Search for a parcel to Send a Parcel, Search for a parcel rota= ' + rota);
//$("#trdcube").one('webkitAnimationEnd oAnimationend msAnimationEnd animationend',   
// function(e){
//code to execute after animation ends
// $("#trdcube").removeClass('plus90 minus90 plus180 minus180 plus270 minus270');
// });
// rota=rota-90;

// $('#trdcube').addClass('minus90');

// alert('Send a Parcel Page! Rota is: ' + rota);
// }else{
// alert('*_*!!')
// };

// }); // send express page ends

//express search page 360
// $('#expressSearch').on('click', function(){
// alert('From Search for an agent to Search a Parcel, Search for an agent rota= ' + rota);
// if(rota==90){
//$("#trdcube").one('webkitAnimationEnd oAnimationend msAnimationEnd animationend',   
//function(e){
// code to execute after animation ends
//$("#trdcube").removeClass('plus90 minus90 plus180 minus180 minus270 plus270');
//});
//rota=rota+270;

// $('#trdcube').addClass('plus90');

// alert('Search for a Parcel Page! Rota is: ' + rota);

// }else if(rota==180){
// alert('From Frontpage to Search a Parcel, Frontpage rota= ' + rota);

//$("#trdcube").one('webkitAnimationEnd oAnimationend msAnimationEnd animationend',   
// function(e){
//code to execute after animation ends
// $("#trdcube").removeClass('plus90 minus90 plus180 minus180 plus270 minus270');
// });
// rota=rota+180;

// $('#trdcube').addClass('minus180');

// alert('Search for a Parcel Page! Rota is: ' + rota);

// }else if(rota==270){
// alert('From Send a Parcel Page to Search a Parcel, Send a Parcel Page rota= ' + rota);

//$("#trdcube").one('webkitAnimationEnd oAnimationend msAnimationEnd animationend',   
// function(e){
// code to execute after animation ends
// $("#trdcube").removeClass('plus90 minus90 plus180 minus180 plus270 minus270');
// });
// rota=rota+90;

// $('#trdcube').addClass('minus90');

// alert('Search Parcel Page! Rota is: ' + rota);

// }else if (rota=360){
//!!!!!!!!!!!!!this is the search for a parcel page!!!!!!!!!!!!!!
// rota=rota;
// alert('The rota is: ' + rota + ' This is the search for a parcel page dude!!');
// code to execute after animation ends
//$("#trdcube").removeClass('plus90 minus90 plus180 minus180 minus270 plus270');

// }//else{
// alert('*_*!!');
//};
// }); // express search page end

//express agent search 90
// $('#expressAgentSearch').on('click',function(){

// if(rota==90){
// rota=rota;
// alert('The rota is: ' + rota + ' This is the Search for an Agent page dude!!');
// $("#trdcube").removeClass('minus90 plus90 plus180 minus180 plus270 minus270');

// }else if(rota==180){
// alert('From Frontpage to Search an Agent Page, Frontpage rota= ' + rota);
//$("#trdcube").one('webkitAnimationEnd oAnimationend msAnimationEnd animationend',   
// function(e){
//code to execute after animation ends
// $("#trdcube").removeClass('minus90 plus90 plus180 minus180 plus270 minus270');
// });
// rota=rota-90;

// $('#trdcube').addClass('plus90');

// alert('Search for an Agent Page! Rota is: ' + rota);
// }else if(rota==270){
// alert('From Send a Parcel to Search for an Agent Page, Send a Parcel rota= ' + rota);
//$("#trdcube").one('webkitAnimationEnd oAnimationend msAnimationEnd animationend',   
// function(e){
// code to execute after animation ends
// $("#trdcube").removeClass('plus90 minus90 minus180 plus180 plus270 minus270');
// });
// rota=rota-180;

// $('#trdcube').addClass('plus180');
//
// alert('Search for an Agent Page.Rota is: ' + rota);

// }else if(rota==360){
// alert('From Search a Parcel to Search for an Agent Page, Search Parcel rota= ' + rota);

//$("#trdcube").one('webkitAnimationEnd oAnimationend msAnimationEnd animationend',   
// function(e){
// code to execute after animation ends
// $("#trdcube").removeClass('minus90 plus90 plus270 minus180 plus270 minus270');
// });
// rota=rota-270;

// $('#trdcube').addClass('plus90');

// alert('Search for an Agent Page.Rota is: ' + rota);
// }else{
// alert('*_*!!');
// };
// }); //express agent search end

})();

Ответить
@tupacaima7176
@tupacaima7176 - 05.06.2015 18:37

Thank you so much.
Very clear.

Ответить
@adiviswanath
@adiviswanath - 24.05.2015 03:53

Amazing. Thank you

Ответить