Click here to Skip to main content
15,886,258 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Is javascript parse on client browser ? or on server side? is any 'plug in' in browsers for parsing js?
Posted
Updated 26-Aug-10 19:37pm
v3

I am not sure what you meant by "javascript Parse" but, the javascript codes are executed completely on Client side (Browser), not in the Server side. However, you have to make sure that, the Javascript codes are inside the script block as follows:

XML
<script language="javascript" type="text/javascript">
        function test() {
            alert("Hi");
        }
</script>


Otherwise, the Server side code may not give any error, but will just output the javascript codes as text in the browser.
 
Share this answer
 
Javascript is run on the client side, by the browser. Which is why the same code can behave differently in different browsers. I suggest you buy a book on ASP.NET and read it to understand fully how it works and what it does.,
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900