answersLogoWhite

0

What is vb script and javascript?

Updated: 8/16/2019
User Avatar

Wiki User

12y ago

Best Answer

vbscript and javascript are both client-side scripting languages, which means that they are used in HTML.

vbscript and javascript are two different languages, just as English and french are two different languages. There are many places to learn them, but a good, rough outline for beginners, that covers all the basics, can be found at http://www.w3schools.com/

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is vb script and javascript?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is difference between vb script and java script?

JavaScript is just like VB Script, but VB Script is what windows made to try to get rid of JavaScript, but as you can see im sure JavaSript is the winner. They are the same thing pretty much just a little alterations in the code.


What is the difference between VB-Script and JavaScript?

vbscript is used for server side as well as client side where as java script is used for client side only.


Java sript vs VB script?

Hi all, javascript is case sensitive vbscript is not. javascript will explore in all the browser, vb accept only internet explore javascript only for client side, vbscript both client side and serverside js is client side validation,vbscript for server side validation if you don't get. u can reach me iamselvam85@gmail.com


What are the applications of object oriented language?

JavaScript Vb


How can we use script tag in java?

to implement javascript embed the statements between <script> n </script>,,, and include any scripting language. eg:<script LANGUAGE="javascript"> block of codes </script>


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>


How do you call a perl program from javascript?

You can call the Script like this, <script type="text/javascript" src="perl_script.pl"></script> So you just replace a regular Javascript Call ( .js ) with the .pl Script. Inside the Perl Script you will have to use embraced Javascript Functions / Code, f.e. like print "document.write.('Hello World');";.


How can you script your ASP code in JavaScript?

Start the document with: <%@ language="javascript" %>


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>


What's the difference between visual basic and vbscript?

JavaScript is just like VB Script, but VB Script is what windows made to try to get rid of JavaScript, but as you can see im sure JavaSript is the winner. They are the same thing pretty much just a little alterations in the code.


Which tag is used to implement javascript in an HTML file?

The SCRIPT tag is used to implement a JavaScript (or other kind, i.e. VBScript) in an HTML document. The tag can either contain the actual JavaScript code, or can point to an external script file that should be included at render-time. To add JavaScript directly to the document in HTML 5, place these tags in either the HEAD section or just prior to the BODY sections closing tag. <script type="text/javascript"> //JS code goes here </script> To call an external JavaScript file, use the "src" attribute, like so: <script type="text/javascript" src="path/to/script.js"></script> If you're unsure of where to put the JavaScript tags, see the related answer(s).


What element do you use to add JavaScript code to a web page and how is it structured?

To add javascript code in HTML, you have to include the script tag on top. It can be added as <script src="source of script"></script>