Pass the Picklist value in Javascript Onchange using Visualforce page
Pass the Picklist value in Javascript Onchange using Visualforce page Visualforce page use the below codes: <apex:inputField value=”{!Account.Status}” onchange=”foo(this.id);” id=”AccStatus”/> Even better approach will be to send current element to JavaScript function rather than passing only id & then finding…
Read More