lingo5 Posted December 11, 2011 Share Posted December 11, 2011 Hi, I have a form with an email address text field. In the same page I have a list of email adresses INSIDE AN iFRAME. I have done this in order to automatically populate the email field when an item from the list is clicked: <td width="30%" align="left" nowrap="nowrap" class="AddressTXT"><a style="cursor:pointer;" onclick="document.getElementById('txtTo').value='<?php echo $row_letters_RS['cliente_email']; ?>';"><?php echo $row_letters_RS['company_name']; ?></a> </td> ...but nothing happens. I guess this is because of the iFrame. Please help. Thanks Quote Link to comment https://forums.phpfreaks.com/topic/252934-please-help-populating-text-field/ Share on other sites More sharing options...
sunfighter Posted December 11, 2011 Share Posted December 11, 2011 Try: onclick="document.getElementById('txtTo').innerHTML= Quote Link to comment https://forums.phpfreaks.com/topic/252934-please-help-populating-text-field/#findComment-1296805 Share on other sites More sharing options...
lingo5 Posted December 11, 2011 Author Share Posted December 11, 2011 thanks sunfighter...but no luck Quote Link to comment https://forums.phpfreaks.com/topic/252934-please-help-populating-text-field/#findComment-1296812 Share on other sites More sharing options...
lingo5 Posted December 11, 2011 Author Share Posted December 11, 2011 OK...I fixed it like so: onclick="parent.document.getElementById('txtTo').value= Now I would like to know how to add multiple values to the text field separated by commas. Anyone? Thanks Quote Link to comment https://forums.phpfreaks.com/topic/252934-please-help-populating-text-field/#findComment-1296825 Share on other sites More sharing options...
lingo5 Posted December 11, 2011 Author Share Posted December 11, 2011 I would also like to know if it is possible to populate the textfield that is actually onfocus using the same function. I have several text fields and would like to populate them with items from the same list. Quote Link to comment https://forums.phpfreaks.com/topic/252934-please-help-populating-text-field/#findComment-1296852 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.