Example : Passing Values from JS to Others i.e. [ passing value from jsp to js ].
<% String str="Codershelpline"; %>
<html>
<head>
<script>
function access()
{
var s="<%=str%>";
alert(s);
}
</script>
</head>
<body onload="access()">
</body>
</html>
Example : How to pass value from js to jsp [passing value from js to jsp].
Click this Link to go to that Page
Example : How to pass value from php to js [passing value from js to php].
<?php $val=105; ?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Codershelpline</title>
<script>
var output = <?php echo $val; ?>;
document.write(output);
</script>
</head>
<body></body>
</html>
0 Comments