You need to sign in to do that
Don't have an account?

How to write a java scripts in visualforce page ..............
Hi,
How to write a java scripts in one function in visualforce page ..............
like first name,
last name,
phone ,
email,
company .
validations of firstname,lastname,phone,email
;...............
help me friends.....................
Example:
You can write in the VF page:
<script>
function openURL()
{
window.open("www.google.com");
}
</script>
And after call for example from a button in the page:
<apex:commandButton value="openNewURL" action="openURL();"/>