WebsiteBaker Community Forum

WebsiteBaker Support (2.8.x) => Droplets & Snippets => Topic started by: snark on January 28, 2010, 04:56:45 PM

Title: searchbox extra
Post by: snark on January 28, 2010, 04:56:45 PM
I want to include
 onClick="if(this.value == 'fill in your searchbla here...') { this.value = ''; }" onBlur="if(this.value == '') { this.value = 'Fill in your searchbla here....'; }"

on the textfiel of the searchbox droplet


but I get a red drop...

anyone knows what to change?  in normal code this works fine

Title: Re: searchbox extra
Post by: crnogorac081 on January 28, 2010, 09:14:06 PM
Hi,

I suggest to post the whole code so coders can take a look.

cheers
Title: Re: searchbox extra
Post by: snark on January 28, 2010, 09:57:14 PM
'kay,

Code: [Select]
global $TEXT;
$return_value = " ";
if(SHOW_SEARCH) {
    $return_value  = '<div class="box">';
    $return_value  .= '<form action="'.WB_URL.'/search/index'.PAGE_EXTENSION.'" method="get" name="search" class="searchform" id="search">';
    $return_value  .= '<input type="text" name="string" size="22" class="boks" value="fill in your searchbla here..." onClick="if(this.value == 'fill in your searchbla here...') { this.value = ''; }" onBlur="if(this.value == '') { this.value = 'Fill in your searchbla here....'; }" />&nbsp;';
    $return_value  .= '<input name="submit" type="submit" class="buttonq" value="'.$TEXT['SEARCH'].'" />';
    $return_value  .= '</form>';
    $return_value  .= '</div>';
}
return $return_value;
Title: Re: searchbox extra
Post by: snark on February 04, 2010, 05:02:57 PM
nobody has an idea?

Title: Re: searchbox extra
Post by: pcwacht on February 04, 2010, 05:42:42 PM
Watch the quotes and doublequotes

the '   and the "

text starts with ' and ends with '
so:
Code: [Select]
$return_value = ' some text and doublequote " " and singlequotes ' ' ';
will error since the text will be not corrct
you need to escape the ' so it will be parsed as text instead of end of text
Code: [Select]
$return_value = ' some text and doublequote " " and singlequotes \' \' ';

Code: [Select]
$return_value  .= '<input type="text" name="string" size="22" class="boks" value="fill in your searchbla here..." onClick="if(this.value == \'fill in your searchbla here...\') { this.value = \'\'; }" onBlur="if(this.value == \'\') { this.value = \'Fill in your searchbla here....\'; }" />&nbsp;'
might work


John