function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
BondicloudBondicloud 

In window.onload function not Get Ids

Hi All,

 

I am not get Ids of HTML as vf elements ids .  when page loading ....it shwoing null values in alert(),....canu any body help in this.

 

<apex:page Controller="ForeCastCls" standardStylesheets="false" >

<script type="text/javascript">
window.onload = new function() {
    alert('addoption calling...');
    var selectEl = document.getElementById('SelectId');
    alert('select option id:'+selectEl);
    var prodNameEle = document.getElementById('j_id0:akaFormId:pgblcId:apexButtonId');
    alert('prodNameEle...Id:'+prodNameEle);
 
    };
</script>
<apex:form id="akaFormId">
<HTML>
            <Body>
                secondary Accounts:
                <select name="secondary Account"  id="SelectId">
                            
                </select>
                <input type="button" value="add" id="selectoptButtonId"/>
                <apex:pageBlock id="pgblcId">
                     <apex:inputText id="apexButtonId" value="{!bondi}"  ></apex:inputText>
                </apex:pageBlock>
               
            </Body>
        </HTML>
</apex:form>
</apex:page>

 

 

thanks.

bondi

MagulanDuraipandianMagulanDuraipandian

<select>

    <option></option>

    <option></option>

    <option></option>

    <option></option>

</select>

 

is the syntax. No <option></option> in your code.

 

Regards,

Magulan D

Salesforce.com certified Force.com Developer.

SFDC Blog

 

If this post is your solution, kindly mark this as the solution.

BondicloudBondicloud

I am adding select optinons in javascript