InterviewSolution
Saved Bookmarks
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 151. |
How Can We Give Fade Effect In J Query? |
Answer»
Syntax: $(SELECTOR).fadeIn(speed,callback) $(selector).fadeOut(speed,callback) $(selector).fadeTo(speed,opacity,callback)
For example $("clickme").click(function(){$("mydiv").fadeTo("slow",0.50); }); $("clickme").click(function(){ $("mydiv").fadeOut(3000); });. Syntax: For example |
|
| 152. |
What Is Jquery Selectors? Give Some Examples? |
Answer»
There are three building blocks to select the elements in a web DOCUMENT.
There are three building blocks to select the elements in a web document. |
|