answersLogoWhite

0


Best Answer

Try an add on called firebug in firefox. It works great with javascript. IE has its own built-in web development tools which works fine in my view.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Mozilla JavaScript Debugger and Microsoft Script Debugger?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

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" %>


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).

Related questions

What is the browser that is capable of java-script?

Almost all modern browsers support javascript. The most popular browsers (all of which support javascript) are Microsoft's Internet Explorer, Mozilla's Firefox, Apple's Safari and Google's Chrome.


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>


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 is script in Internet Programming?

javascript


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>


What two tags does javascript have to be enclosed in?

as far as i know they are: <script type="text/javascript"> all my lovely javascript code!!! </script>


Where do you go to download java script?

You need not download javascript. Any machine where you have a web browser like Internet Explorer or Mozilla would have javascript inbuilt in them. If you view the source (Right click-> View Source : and you can even try on this page itself), you will see tags such as <script type="text/javascript"> These is the embedded javascript code. If you have a source too in the script tag, simply locate the address and type it out in your browser, you will have the entire javascript file.


Difference between vbscript and java script?

Visual Basic script and JavaScript are both programming languages. JavaScript is used primarily to create websites, and has no user interface. Visual Basic is used to create software applications, has a user interface, and is less heavy on the code than JavaScript.