Question

I have a custom VisualForce page and would like via javascript to get the url to create a new account/contact.

I know I can do the following in the main apex code but I want to do something dynamically. Create New Account

What is the easiest way to get the url to create a new object via javascript?

Was it helpful?

Solution

You can use this code in Javascript (if your script tag is inside a visualforce page):

var newAccountEndpoint = '{!URLFOR($Action.Account.New)}';
var newOpptyEndpoint = '{!URLFOR($Action.Opportunity.New)}';

Or as I stated before refer to pre made list of standard salesforce object prefixes

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top