कोई टाइटल नहीं

1. Oxferd Current English Grammar Exercise 75 ( Narration: Direct to Indirect ) का solved answer ।

  

2. Let's go to the water park! There's a water park around the corner from you.

            

Let's go to the mall! There's a mall 15 miles away from you.

                   

Do you want to go for a swim?

                     

Let's go to the water park! There's a water park around the corner from you.

                     

Let's go to the mall! There's a mall 15 miles away from you.

                       

-------------------------------------------------------------------------------------

 


3. var displayOption = function toggleOption() { var option1 = document.getElementByClass('option1yes') var option2 = document.getElementByClass('option1no') if (.click('.option1yes')) { option2.style.display = 'none' } else option1.style.display = 'block' }


Do you want to go for a swim?

Let's go to the water park! There's a water park around the corner from you.

Let's go to the mall! There's a mall 15 miles away from you.


var y = document.getElementById("option1-yes"); var n = document.getElementById("option1-no"); y.style.display = "none"; n.style.display = "none"; document.getElementById("option1yes").onclick = function () { y.style.display = "block"; n.style.display = "none"; }; document.getElementById("option1no").onclick = function () { y.style.display = "none"; n.style.display = "block"; };var y = document.getElementById("option1-yes"); var n = document.getElementById("option1-no"); y.style.display = "none"; n.style.display = "none"; document.getElementById("option1yes").onclick = function () { y.style.display = "block"; n.style.display = "none"; }; document.getElementById("option1no").onclick = function () { y.style.display = "none"; n.style.display = "block"; };

var btnYes = document.getElementById('option1yes'); var btnNo = document.getElementById('option1no'); var optYes = document.getElementById('option1-yes'); var optNo = document.getElementById('option1-no'); btnYes.addEventListener('click', function(){ optYes.className = ''; optNo.className = 'hidden'; }); btnNo.addEventListener('click', function(){ optNo.className = ''; optYes.className = 'hidden'; }); .hidden{ display: none; }

Do you want to go for a swim?