Jump to content

Help adding javascript to this PHP form


toolman

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.