answersLogoWhite

0

Which script interact with HTML

Updated: 8/19/2019
User Avatar

Wiki User

10y ago

Best Answer

Javascript or VBscript.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which script interact with HTML
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is HTML a client side script or server side?

HTML is not a script language. However, HTML is executed on the client side.HTML is not a script language. However, HTML is executed on the client side.HTML is not a script language. However, HTML is executed on the client side.HTML is not a script language. However, HTML is executed on the client side.HTML is not a script language. However, HTML is executed on the client side.HTML is not a script language. However, HTML is executed on the client side.HTML is not a script language. However, HTML is executed on the client side.HTML is not a script language. However, HTML is executed on the client side.HTML is not a script language. However, HTML is executed on the client side.HTML is not a script language. However, HTML is executed on the client side.HTML is not a script language. However, HTML is executed on the client side.


Is HTML a script language?

No, but you can nest JavaScript into the HTML.


What is java script code for password?

There is an html form element for password. Validation script for password doesn't differ from script of html text element


What element embeds a script into an HTML document?

The script tag.


What is HTML scripts?

HTML is a markup language, not a scripting language. There is no such thing as an HTML script.


How do you use PHP in HTML?

You can't use PHP in an HTML document, but you can use HTML in PHP script.


Software that enables you to display and interact with text and other media on the web is a web .?

As you may know that website's front end is usual written in HTML and are manipulated with java script. the html and javascript have something called events. when you click on a button an event is generated and usually events are triggered by javascript and some basic events are triggered with HTML. so the software that allows you to interact with webpage is the web browser and its HTML, JavaScript processing engine


What you need to study to create your website?

I would suggest you start with HTML and then move on to JavaScript VBScript would come after that. EX: <html><body><!--HTML HERE--> <!--JAVASCRIPT STARTS BELOW--> <script language="JavaScript"> //JAVASCRIPT HERE </script> <!--JAVASCRIPT ENDS HERE--> <!--VBSCRIPT STARTS BELOW--> <script language="VBScript"> 'VBSCRIPT HERE </script> </body></html>


How do you put java script into HTML?

Javascript inside html <html> <head> <script type="text/javascript" language="javascript"> // Java script code here </script> <body> // html code here </body> </html> Via External Link: <html> <head> <script type="text/javascript" language="javascript" src="location of js file"> </script> <body> // html code here </body> </html>


Why you use javascript with HTML?

JavaScript is a script which makes HTML more interactive and adds more functionality to HTML.


Which HTML tag is used to indicate to the web browser that the HTML page contains a javascript program?

Easy one. <script type="text/javascript"></script>.


What is a text in HTML?

Generally, characters not surrounded by '<' and '>' signs are considered text in HTML. Characters between '<' and '>' signs are considered tags. Also characters between <script> and </script> tags are not considered text, they are script body and are executed by script interpreter, not simply displayed on webpage.