Create a div tag and it should display Welcome message (by using JQuery )
Create two div tags and assign yellow as background colour to both of them by using JQuery.
Display and hide message shown in the div tag on click of the buttons. You can use Jquery show hide.
Display and hide message by using a single button . You can use Jquery toggle().
Create a div tag and on click of a button it should display your name.
Solution:
<div id=display1></div>
<script>
$(document).ready(function() {
$("#display1").html('Welcome to plus2net.com');
})
</script>
2. Create two div tags and assign yellow as background colour to both of them by using JQuery.
First Div with id=display2
Second Div with id=display3
<div id=display2> First Div with id=display2</div>
<div id=display3> Second Div with id=display3</div>
<script>
$(document).ready(function() {
$("#display2,#display3").css("background-color", "yellow");
})
</script>
3.Display and hide message shown in the div tag on click of buttons. You can use Jquery show hide.