JQuery Tutorial for Beginners - 5 - JQuery Selectors Part 1

JQuery Tutorial for Beginners - 5 - JQuery Selectors Part 1

EJ Media

8 лет назад

34,315 Просмотров

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


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

@tastyl2356
@tastyl2356 - 01.06.2019 07:59

;whenever i learn how to code something new im always really happy especially when u teach it :)

Ответить
@olwethukholani737
@olwethukholani737 - 21.07.2018 17:33

Thanks so much love from Tanzania...

Ответить
@nagahumanbeingzooofparticl8836
@nagahumanbeingzooofparticl8836 - 16.02.2018 13:32

noice

Ответить
@1ducatti
@1ducatti - 13.01.2018 13:27

if we use $(:contains('heelo').hide() jquery simply hides all elements of the page ??

Ответить
@jatinnandwani8222
@jatinnandwani8222 - 01.12.2017 12:10

if we are hiding the in-between div elements then our button position changes automatically. but in your videos, it is not.
what about others are you expereincing the same.?

Ответить
@sachinmadishetty6704
@sachinmadishetty6704 - 27.02.2017 11:11

help!!
if we have a h1 tag inside a <p></p> then in such situation this code dosen't work!!
<p><h1>appple</h1></p>
how to refer the <h1>

Ответить
@zafarabbas8621
@zafarabbas8621 - 09.12.2016 14:53

Ej media i am very thankfull to you god bless you i am askinh to that whene you start advance java script

Ответить
@TheGuroguro12
@TheGuroguro12 - 21.09.2016 16:53

Thank you very much!

Ответить
@talhafarooq6813
@talhafarooq6813 - 16.09.2016 10:52

can you please do a tutorial on responsive web pages so its easier to learn how to combine all the code and make professional looking layouts?

Ответить
@AnkitKumarkapsime
@AnkitKumarkapsime - 27.12.2015 06:55

First of all I wish to thank u for these wonderful lessons . I went through your html,css and JavaScript series and has helped me a lot .

coming back to this video ,u said that while hiding the 1st paragraph of 1st section we need to specify name of the name of the decedent Css selector otherwise 1st paragraph of all other section will also be hidden. But when i tried it without giving the name of decedent Css selector ,it was still working fine.

=======================================================================HTML CODE
=======================================================================
<!DOCTYPE html>

<html>

<head>
<link type="text/css" rel="stylesheet" href="style.css">

</head>

<body>

<div id="left">

<p>This is first para. </p>
<p>This is second para. </p>
</div>

<div id="center">
<p>This is first para. </p>
<p>This area will contain the center content area.</p>
</div>

<div id="right">
<p>This is first para. </p>
<p>This area will contain the right content area.</p>

</div>

<div id="test">
<button> Hit button to change something </button>
</div>

<script src="jquery-2.1.4.js"></script>
<script>
$(document).ready(function() {

$("button").click(function() {

$("p:first").hide();


});
});


</script>
</body>
</html>
=======================================================================

Ответить
@Albinary
@Albinary - 20.09.2015 19:21

Exactly what I needed!

Ответить