answersLogoWhite

0


Best Answer

i am not completely sure what the question is, but i think this might help a little. Javascript can be use in many ways. like to control one object and make it preform attributes that you want it to do. an example of that is you can make it open a web page but you can control the size, if you want the address bar shown, and if you want the scroll bars shown. if i am reading your question correctly i do not think there is anything that you can do to the persons computer with Javascript. there might be somethings you can do, but i believe there is a limit to what can be done.

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What file operations JavaScript can perform on a client computer?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the name of the client based script language used in conjunction with HTML to perform mathmetical or control functions?

JavaScript


What does server side relate to in the computer industry?

In the computer industry, server side refers to the operations performed by a server in a server-client computer relationship. The server side typically handles many functions to lighten the load of the client side's work.


Which one is best javascript or net?

JavaScript is a client-side scripting language while .NET is a framework so obviously .NET is better.


What is use of JavaScript?

JavaScript is used to perform client-side programming on web pages. This includes making remote calls to more advanced, server-side languages like PHP and ASP, which have direct access to the database, as well as performing basic validation for client input, creating graphical representations of data (read charts and graphs) and animating page elements to aid in the users understanding of the interface.


How do you connect javascript using php?

Any communication between Javascript code and PHP code needs to be instigated by the Javascript. This is because Javascript is a client side script and PHP is server side. The server can't force data to the browser; it can only reply to requests. The technique of using Javascript on the client side to talk to server side scripts is referred to as AJAX (Asynchronous Javascript And XML). There are several libraries available for simplifying it's usage, and many online tutorials.


What is javascript list out uses of java script?

JavaScript's role in application development is primarily focused on the user interface. JavaScript allows for remote calls (AJAX) to more complex programming languages. It is also used to produce things like charts and graphs from data sets. Modern JavaScript also allows for things like animation, and some basic data storage on the client machine in HTML5. By itself, JavaScript is limited by the fact that it has very limited access to the client machine, and no direct access to remote data. But JS is completely irreplaceable when it comes to creating intuitive, reactive interfaces for the web.


What are the differences between JavaScript and Ajax?

Javascript is a scripting language used to program various actions to be executed by the web browser. It can be used for more than just AJAX.AJAX involves using Javascript and other client-side and server-side technologies to provide seamless user experience, such as some element of the page being updated without entire page being reloaded from the server.AnswerAJAX is a part of Javascript programming. Javascript is just a client-side scripting language that is used to control a web page once a user has downloaded the page. AJAX is a particular usage of Javascript in which javascript communicates with the remote script and receives the response from the server, without having to reload the whole page. AnswerJavascript is a client-side scripting programming language... AJAX is a technique incorporating the use of Javascript, a server-side scripting language, and XML. But javascript is the main core of ajax-based systems. AJAX stands for Asynchronous Javascript and XML. AnswerAJAX : Ajax is the acronym for Asynchronous JavaScript and XML. It incorporates a suite of technologies aimed at improving user experience with web pages. It also allows programs written in different programming languages on different browsers to communicate with each other. Translation, communication and function between web applications happens remotely and, ideally, instantaneously. Another primary aim of Ajax is to reduce user delay when interacting with web pages. Ajax frameworks and technological components allow web applications to function on an as-need basis without requiring the re-loading of the entire web page.JavaScript:Javascript, on the other hand, is a client side scripting language that allows the creation of dynamic web pages providing a new level of interactivity. The advantage of JavaScript is that since it's a client side application, it can create dynamic web pages that are more complex than what a server side script can do. Server side scripts are run by the host machine and thus, has very limited resources especially when there are a lot of people accessing that server. Being on the client computer, Javascript has a lot of resources to play regardless of the activity on the server.The prime drawback of Javascript is that it is a very good candidate for a Trojan to be installed into your computer. Because it runs on the client, it is authorized some resources that could potentially give control of your computer to an outsider, potentially getting you included in a botnet. The remedy to this drawback is by not allowing untrusted javascript codes from being run on your computer.


What is a personal computer on a network that requests resources is called?

Client Computer


You're preparing for a network installation of windows xp which of following is not required to perform this task?

boot the destination client computer on the network


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.


Does projects with modified javascript needs rebuild?

No, modifying JavaScript in a project would not require the project to be rebuilt under normal circumstances. This is due to the fact JavaScript is an interpreted language. The client receives the unchanged source code and turns it into computer code on it's end (and in whatever fashion it feels like.) Unlike a compiled program, which is turned into machine code before it's delivered to the end user.


Where is JavaScript executed?

No. JavaScript is downloaded into the client's browser and executed there. With one caveat. Apache has a server-side JavaScript module that reached public experimental phase. It proved the concept, but saw little (if any) actual real world use.