toolman Posted December 2, 2010 Share Posted December 2, 2010 Hi, I have this PHP code which displays a form input, but I cannot work out how to add this javascript to the text field. PHP: <?php $data = '<div class="ui-widget infoBoxContainerSearch">' . ' <div class="ui-widget-contentSearch infoBoxContentsSearch" style="text-align: center;">' . ' <div style="text-align: center;">' . tep_draw_form('quick_find', tep_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false), 'get') . '' . ' ' . tep_draw_input_field('keywords', '') . ' ' . tep_draw_hidden_field('search_in_description', '1') . tep_hide_session_id() //. tep_image_submit('search_icon.png', MODULE_BOXES_SEARCH_BOX_TITLE) . '</div>' . ' </form>' . ' </div>' . '</div>'; echo $data; ?> JavaScript: value="Search" onfocus="this.value==this.defaultValue?this.value='':null" onblur="this.value==''?this.value=this.defaultValue:null;" Could anyone point me in the right direction? Thanks Link to comment https://forums.phpfreaks.com/topic/220461-help-adding-javascript-to-this-php-form/ Share on other sites More sharing options...
BlueSkyIS Posted December 2, 2010 Share Posted December 2, 2010 the tep_ functions that output the HTML are not visible, so we can't see what to modify to accomplish this task. Link to comment https://forums.phpfreaks.com/topic/220461-help-adding-javascript-to-this-php-form/#findComment-1142254 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.