You need to sign in to do that
Don't have an account?
Can someone please help me figure out this simple issue?
var cVal = '{!Account.Consulting_Rate__c}';
var cValues = cVal.split(' ');
location.replace('/a0c/e?CF00NC0000005ODrN={!Account.Name}&00NC0000005ODsB='+cValues[1]);
How do I add another assignment to the above location replace code?
Let's say I want to add:
00NC0000005yuiG=+cValues[0]);
I tried everything but just can't get it to work.
var cValues = cVal.split(' ');
location.replace('/a0c/e?CF00NC0000005ODrN={!Account.Name}&00NC0000005ODsB='+cValues[1]);
How do I add another assignment to the above location replace code?
Let's say I want to add:
00NC0000005yuiG=+cValues[0]);
I tried everything but just can't get it to work.
It should be easy
Thanks!