Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 01-21-2013, 10:59 AM   PM User | #1
jarv
Banned

 
Join Date: Mar 2007
Posts: 1,523
Thanks: 116
Thanked 0 Times in 0 Posts
jarv can only hope to improve
Question Show / Hide value of a search box?

Hi, using the code below, I am trying to show / hide the value of my search box but it doesn't seem to work?! I am using Jquery 1.9 and I have the following code in my footer..
Code:
<script type="text/javascript">
   $("#searchbox").on({
	    focus: function() {
        	if (this.value==='Search...') this.value = '';
    	},
   	 blur: function() {
       	 if (this.value==='') this.value = 'Search...';
   	 }
	});
</script>

my page:
http://aet.inpreview.net/
jarv is offline   Reply With Quote
Old 01-21-2013, 11:24 AM   PM User | #2
Kyle123
New Coder

 
Join Date: Jan 2013
Posts: 10
Thanks: 3
Thanked 1 Time in 1 Post
Kyle123 is an unknown quantity at this point
PHP Code:
   $("#searchbox").on({
        
focus: function() {
            if (
this.value==='Search...'){ this.value=''; };
        },
        
blur: function() {
         if (
this.value===''){ this.value 'Search...'; };
        }
    }); 
Kyle123 is offline   Reply With Quote
Old 01-21-2013, 11:46 AM   PM User | #3
jarv
Banned

 
Join Date: Mar 2007
Posts: 1,523
Thanks: 116
Thanked 0 Times in 0 Posts
jarv can only hope to improve
Question

done that thanks, still not working, hmm maybe it's something to do with wordpress?!
jarv is offline   Reply With Quote
Old 01-21-2013, 12:01 PM   PM User | #4
Kyle123
New Coder

 
Join Date: Jan 2013
Posts: 10
Thanks: 3
Thanked 1 Time in 1 Post
Kyle123 is an unknown quantity at this point
What "doesn't work"? What error messages do you get?

It works here: http://jsfiddle.net/sU2fT/
Kyle123 is offline   Reply With Quote
Users who have thanked Kyle123 for this post:
jarv (01-22-2013)
Old 01-22-2013, 09:32 AM   PM User | #5
jarv
Banned

 
Join Date: Mar 2007
Posts: 1,523
Thanks: 116
Thanked 0 Times in 0 Posts
jarv can only hope to improve
Sorry, it does work, my browser was cached

thanks

Last edited by jarv; 01-22-2013 at 09:38 AM..
jarv is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 12:07 PM.


Advertisement
Log in to turn off these ads.