Fill This Form To Receive Instant Help
Homework answers / question archive / 1) What JavaScript method would you use to write text to a web page? 2*What are the two methods for incorporating jQuery on a web page? 3*Can a web page have more than two forms? 4*What is JavaScript? 5* What do you call a reuseable block of JavaScript statements? 6*What is an attribute of a JavaScript object referred to as?
1) What JavaScript method would you use to write text to a web page?
2*What are the two methods for incorporating jQuery on a web page?
3*Can a web page have more than two forms?
4*What is JavaScript?
5* What do you call a reuseable block of JavaScript statements?
6*What is an attribute of a JavaScript object referred to as?
Question 1.
Java Script Method used to write text to a web page is document.write("Text comes here");
For an example , document.write("<h2>Hello Worled!</h2><p>Have great day</p>");
Question 2
There are following 2 methods / ways that can be used in jQuery :-
i) Local installation- one may download JQuery libraryin a local machine and including it in HTML code.
ii) CDN Based Version-one may include Query library in to HTML code directly from a (CDN) content delivery network
Question 3
Yes a web page can have two forms or even more than two forms.
Question 4
JavaScript is a scripting language which enable one to create dynamic updating content and controlling multimedia. JavaScript program can change the behaviour of webpages such as JavaScript can change the HTML Content ,Javascript can change styling of of webpage, it can change value of attributes etc.
Question 5
Reusable block of Javascript code is known as Functions.
Question 6
Attributes of javascript objects is refereed to as JavaScript Properties.