How to's:
I have java script that opens a new window now inside my pop-up window I have list of names display and I want to select the names and insert it on my PHP page text box. Anybody who can show me how to do this?
thanks!
I have java script that opens a new window now inside my pop-up window I have list of names display and I want to select the names and insert it on my PHP page text box. Anybody who can show me how to do this?
thanks!
Code:
echo '
<h2>' . ( $id ? translate ( 'Edit Entry' ) : translate ( 'Add Entry' ) )
. $eType_label . ' <img src="images/help.gif" alt="' . translate ( 'Help' )
. '" class="help" onclick="window.open( \'search_contact.php'
. ( empty ( $id ) ? '?add=1' : '' )
. '\', \'cal_help\', \'dependent,menubar,scrollbars,height=400,width=800,'
. 'innerHeight=420,outerWidth=420\' );" /></h2>'
Comment