[jQuery] Multi-line tabs plugin

2010-01-27 Thread Michael Price
uggestions appreciated J Regards, Michael Price

[jQuery] Re: jQuery plugin that can do the image effects here?

2009-09-30 Thread Michael Price
That would be absolutely perfect :D Thanks! Regards, Michael Price From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Charlie Griefer Sent: 30 September 2009 17:19 To: jquery-en@googlegroups.com Subject: [jQuery] Re: jQuery plugin that can do the image

[jQuery] jQuery plugin that can do the image effects here?

2009-09-30 Thread Michael Price
to do something like the above, or can the Cycle plugin be made to do it? Regards, Michael Price

[jQuery] Re: This is not a function

2009-08-27 Thread Michael Price
r - but it's worth removing one of them since you don't need to load it twice anyway. Regards, Michael Price -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Chris Cardarello Sent: 27 August 2009 10:52 To: jQuery (English) S

[jQuery] Re: Get inner class of event

2009-08-21 Thread Michael Price
Hello again folks - as per usual, I managed to get this working five minutes later! So never mind, but thanks if you were going to take a look at it J Regards, Michael Price From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Michael Price Sent: 21 August

[jQuery] Get inner class of event

2009-08-21 Thread Michael Price
gards, Michael Price

[jQuery] Old cookie data sent in AJAX request?

2009-08-12 Thread Michael Price
Because it will probably be relevant, we're talking about jQuery 1.2.6 here. Regards, Michael Price

[jQuery] Re: How to POST using jQuery?

2009-08-12 Thread Michael Price
could make your form processing script return the next page in it's response, parse for this and then use it - is that feasible? SUBMIT FORM PARSE RESPONSE WHICH WILL CONTAIN NEW PAGE URL IN IT window.location = newPage; Regards, Michael Price -Original Message- From: jque

[jQuery] Re: What's the best way to replace text in a node?

2009-05-18 Thread Michael Price
You can use either: $("selector").text("New text"); Or $("selector").html("New text"); Both also work as getters if you don't provide an argument: theText = $("selector").text(); theHTML = $("selector").html(); Is this wh

[jQuery] Re: Does IE simply not work or...

2009-02-17 Thread Michael Price
ally nothing works. Aside from the basics, I'm using a validator plugin, but I'm getting JS errors at every turn. Vague errors like "object expected" when I'm simplycalling a JS function that uses JQuery calls. IEis very frustrating, they should just shoot it and put us out of our misery. Regards, Michael Price

[jQuery] Re: Cloning list items in OL screws up numbering in IE

2009-01-28 Thread Michael Price
Thanks Rick, I'll check that out. Meanwhile, my own testing has uncovered a possible cause, and it's an odd one. If I comment out this line: $("#materialol li:last").hide().fadeIn("fast"); The list items are numbered correctly! Curiouser and curiouser..

[jQuery] Cloning list items in OL screws up numbering in IE

2009-01-28 Thread Michael Price
of the cloned + added items are 1. So you end up with a list numbered 1, 2, 3, 4, 5, 1, 1, 1, 1, 1. Is there another way for me to do what I'm doing that will work properly in IE as well as FF? I'm using jQ 1.2.6 by the way. Regards, Michael Price

[jQuery] Re: Trying to assign onClick to a link

2008-12-16 Thread Michael Price
return false; }); I've also added return false as Mike suggested which will stop the link's default action from being followed. Regards, Michael Price

[jQuery] Re: Norton thinks jQuery is a virus?

2008-12-10 Thread Michael Price
s far as I can tell. Same "PDF attack" method as Norton claimed in my original post. Has Norton's latest update just completely screwed it up or something? Regards, Michael Price Michael Price wrote: Christof Donat wrote: Hi, Anyone got any ideas? This is now happening to on

[jQuery] Re: Norton thinks jQuery is a virus?

2008-12-10 Thread Michael Price
g Norton '09 as well - the only difference is I'm on Firefox, not IE. Appart from that: Norton is considered harmfull. I know - like I said, not my choice :) Regards, Michael Price

[jQuery] Re: Norton thinks jQuery is a virus?

2008-12-10 Thread Michael Price
Anyone got any ideas? This is now happening to one of our guys on any site he visits that is using jQuery. Even interface.js got blocked at one point.. Michael Price wrote: Hi all, Couple of lads in here using IE and Norton Antivirus 2009 have suddenly had popups in our intranet

[jQuery] Norton thinks jQuery is a virus?

2008-12-10 Thread Michael Price
rely it HAS to be a false positive but now we've got two machines that won't run jQuery as a result! Regards, Michael Price

[jQuery] Leandro's Lightbox and sIFR

2008-10-13 Thread Michael Price
e plugin if available but perhaps not. Is this an easy fix or is there another one I can use? All help appreciated :) Regards, Michael Price

[jQuery] Re: Read AJAX response in transit?

2008-09-17 Thread Michael Price
Thank you both for your suggestions - I'll give them a try and see what I come up with. The script in question takes about 5 minutes so if I can get something going via your suggestions it'll keep people happy :) Regards, Michael Price

[jQuery] Read AJAX response in transit?

2008-09-16 Thread Michael Price
y page can then read and update on screen. Does this make sense, and is it possible? Regards, Michael Price

[jQuery] Slider menu like http://ui.jquery.com/demos

2008-09-10 Thread PRICE
Hi there, Do you know any Jquery plugin or source code like: http://ui.jquery.com/demos . I like this menu style but I am new at JQuery. I want to build new one but I stuck some places so need to see some source codes. If you know any, please inform me. Thank you...

[jQuery] XML filtering

2008-08-22 Thread Michael Price
egards, Michael Price

[jQuery] Re: Cycle / carousel with partial images on either side?

2008-07-04 Thread Michael Price
dequately - all help would be greatly appreciated. :) Cycle won't handle that out of the box; you'd have to write a custom transition. This page shows you how you can define your own transitions: http://www.malsup.com/jquery/cycle/adv2.html Hi Mike, I'll give that a shot - thanks! :) Regards, Michael Price

[jQuery] Cycle / carousel with partial images on either side?

2008-07-03 Thread Michael Price
ely - all help would be greatly appreciated. :) Regards, Michael Price

[jQuery] Naivgate with lightbox / thickbox etc.?

2008-06-19 Thread Michael Price
e would be best for achieving this? The site is only on jQ 1.2.3 so compatibility needs to aim here. Thanks :) Regards, Michael Price

[jQuery] Re: Validate plugin - validate only PART of a form

2008-06-11 Thread Michael Price
Jörn Zaefferer wrote: Take a look at this multipart form, it uses the accordion and custom methods to split validation across parts: http://jquery.bassistance.de/validate/demo/multipart/ I'll check that out - thanks :) Regards, Michael Price

[jQuery] Validate plugin - validate only PART of a form

2008-06-10 Thread Michael Price
using the validator plugin? Say in this instance I only want to validate the values in the top half Is this easy to do? Thanks for any help :) Regards, Michael Price

[jQuery] Re: Get co-ordinates of click on image

2008-05-30 Thread Michael Price
tlob wrote: the docs are good for searching... so is google: http://docs.jquery.com/Tutorials:Mouse_Position That did the trick, thanks :) Regards, Michael Price

[jQuery] Re: Get co-ordinates of click on image

2008-05-30 Thread Michael Price
tlob wrote: the docs are good for searching... so is google: http://docs.jquery.com/Tutorials:Mouse_Position cheers tlz On May 30, 1:02 pm, Michael Price <[EMAIL PROTECTED]> wrote: Hi all, Working on something for a client at the moment - they have a map and they want to pinpoint wh

[jQuery] Get co-ordinates of click on image

2008-05-30 Thread Michael Price
t I'm not sure how we'd fetch the co-ords of where they clicked? Just as X,Y pixels from the top left of the image, nowt too clever. $("#map").click(function() { // WHAT GOES IN HERE? } Does anyone have any thoughts? All help much appreciated :) Regards, Michael Price

[jQuery] Re: BlockUI: Strange flickering behavior.

2008-05-21 Thread Michael Price
uot;).hover(function() { // MOUSEOVER HERE },function() { // MOUSEOUT HERE }); Regards, Michael Price

[jQuery] Validator plugin problem with radio buttons

2008-05-21 Thread Michael Price
esn't validate the credit card fields. I'm a version or two behind on the plugin but I wondered what the correct fix for this was? I'm thinking I might have the syntax wrong. Regards, Michael Price

[jQuery] Re: UI Tabs - disable AJAX functionality?

2008-04-28 Thread Michael Price
ry.com/UI/Tabs#...open_a_tab_in_a_new_window_instead.3F > > On Apr 24, 2:30 pm, Michael Price <[EMAIL PROTECTED]> wrote: > > > Hi all, > > I've got a row of five tabs and I'm using Klaus' Tabs plugin to handle > > them. I want four of them to use the standard tab func

[jQuery] UI Tabs - disable AJAX functionality?

2008-04-24 Thread Michael Price
age via the tab extension's AJAX functionality. Is there a way the AJAX loading can be disabled so that the browser can follow this link normally instead? Regards, Michael Price

[jQuery] Re: Animate to bottom left corner?

2008-04-07 Thread Michael Price
Karl Swedberg wrote: I think this is just a matter of setting the image's CSS properties properly. Instead of using a "top" property, use "bottom": img.someclass { position: absolute; bottom: 0; left: 0; } Karl, that's brilliant. Works perfectly! Regards, Michael Price

[jQuery] Animate to bottom left corner?

2008-04-07 Thread Michael Price
Regards, Michael Price

[jQuery] Re: put the value back in the input (Beginner)

2008-02-15 Thread Michael Price
tell I have faith in my ability to explain things properly, I must say this in every post!) Regards, Michael Price

[jQuery] Re: put the value back in the input (Beginner)

2008-02-15 Thread Michael Price
tion() { if ($(this).val() == "") { $(this).val($(this)[0].defaultValue); } }); }); This adds a blur event that says if the value is empty, restore it to the element's default value. Hope this helps. :) Regards, Michael Price

[jQuery] Re: div select and change it's css

2008-02-15 Thread Michael Price
"); $(this).addClass(".highlight"); } jQuery being what it is, there's bound to be a way of doing this in one line, though :) Regards, Michael Price

[jQuery] Re: [Validate] Two fields, one error message

2008-02-06 Thread Michael Price
ry, thanks! Regards, Michael Price

[jQuery] Repeating last AJAX action

2008-02-05 Thread Michael Price
e set of prices - if they then change their customer type I'd like to re-execute the last search, and redisplay the results with the new price. What are people's recommendations on the best way to go about doing this? As ever, all help gratefully received :) Regards, Michael Price

[jQuery] [Validate] Two fields, one error message

2008-02-05 Thread Michael Price
error messages appear underneath the boxes. Is there a way to tie both fields together so only one message is displayed? Regards, Michael Price

[jQuery] Re: Cycle CountUp

2008-02-04 Thread Michael Price
offer starts at 4pm and it's 3pm now, your server-side code feeds a variable to your JS saying there's an hour to go and you take it from there? Regards, Michael Price

[jQuery] Re: Problem with siblings(?) in IE6

2008-02-01 Thread Michael Price
lements in both cases had the names "ProdID" and "SeriesName", so they were already defined as variables and IE6 had a problem with overwriting or reassigning them somehow? Regards, Michael Price

[jQuery] Problem with siblings(?) in IE6

2008-02-01 Thread Michael Price
object Object] which I believe is correct, but as soon as it hits the next lines involving siblings, it just stops dead - no error, no warning, nothing. Can anyone shed any light on a cause or solution? Much appreciated if you can. :) Regards, Michael Price

[jQuery] Re: OT: Browser history object and the back button

2007-12-11 Thread Michael Price
Could you use location.replace instead of location.href? It'll do the same thing but overwrites the current record in the browser history instead of making a new one, AFAIK. Regards, Michael PRice

[jQuery] Re: Duplicate values in form fields

2007-11-29 Thread Michael Price
Hi Wizzud, I'll give that a try - thanks! :) Regards, Michael Price

[jQuery] Duplicate values in form fields

2007-11-29 Thread Michael Price
code to show anyone as I dimwittedly removed it so I could get the form up. If anyone has an example of how they've done something similar (or if there's a plugin kicking about) I'd appreciate the help. Thanks! Regards, Michael Price

[jQuery] Spam - not a complaint, more an observation

2007-11-07 Thread Michael Price
s to the group were filtered to stop spam getting through? Regards, Michael Price

[jQuery] Re: Interface v1.2 Error with jQuery v1.2.1

2007-11-06 Thread Michael Price
compatible with the jQuery 1.2.x API. You may need to find another plugin capable of performing similar effects (jQuery UI eventually, maybe?). While I don't know of any, I'm sure you'll get a few suggestions from people here. Regards, Michael Price

[jQuery] Star rating plugins

2007-11-02 Thread Michael Price
ppreciated! :) Regards, Michael Price

[jQuery] Re: Replicating Prototype lightbox with jQuery

2007-10-08 Thread Michael Price
implied I was at all upset by your reply - it was funny that I'd ask a question right after someone had posted the answer though. :) Regards, Michael Price

[jQuery] Re: Replicating Prototype lightbox with jQuery

2007-10-08 Thread Michael Price
ricky since you have to type in order to Google so never mind! Thanks for pointing that out Andy, and thanks Leandro for the excellent looking plugin! Regards, Michael Price

[jQuery] Replicating Prototype lightbox with jQuery

2007-10-08 Thread Michael Price
is or any way I can mod Thickbox to make this happen? Regards, Michael Price

[jQuery] [SITE SUBMISSION] GAME.co.uk

2007-09-20 Thread Michael Price
opy of Singstar I need to buy Regards, Michael Price

[jQuery] Re: Falling at the first hurdle

2007-09-17 Thread Michael Price
I've been trying to learn it for three years!) but should those tags have runat="server" in them? They're meant to be run by the client - this might be your problem. Try taking the runat attribute out and see if it helps. Regards, Michael Price

[jQuery] Re: FCKeditor replacement which works in Safari

2007-09-14 Thread Michael Price
Eridius wrote: There is always tinyMCE http://tinymce.moxiecode.com/ Am toying with that one at this very minute - it shows early promise. That Asbrusoft one looked quite cool as well but I think I'm heading for TinyMCE at the moment. Thanks for the posts so far! Regards, Michael Price

[jQuery] [OT] FCKeditor replacement which works in Safari

2007-09-14 Thread Michael Price
ork in Safari 2 and it's support for Safari 3 is only in nightlies, as I understand it. So we need to replace FCK with something else. Has anyone here used an editor as good as FCK which also works in Safari? Recommendations would be appreciated. :) Regards, Michael Price

[jQuery] Re: Jorn's validation library, validate against default value

2007-09-11 Thread Michael Price
#jQueryvalidatoraddMethodStringFunctionString Hi Jorn, Cheers for the tips, will give them a try! :) Regards, Michael Price

[jQuery] Jorn's validation library, validate against default value

2007-09-10 Thread Michael Price
27;s validation to ensure that they are not just the default values. Either by doing exactly this (preferable as I could re-use it), or checking they don't say "Forename" or "Surname" would be fine. What would be the best way of going about this? Thanks! Regards, Michael Price

[jQuery] JCarousel not auto-starting

2007-08-31 Thread Michael Price
I'm running a little short on that commodity at the mo. Thanks for any help offered! Regards, Michael Price

[jQuery] Re: Getting the nearest label

2007-08-22 Thread Michael Price
;[EMAIL PROTECTED]").whatever().wherever(); Replacing test in the above with whatever the ID is. Regards, Michael Price

[jQuery] Re: What does "Unobtrusive Javascript" mean?

2007-08-16 Thread Michael Price
thout JavaScript. A small example but I hope it helps to clarify things. Hope that made sense. I rarely do. :) Regards, Michael Price

[jQuery] Re: [Slight OT] Quick straw pole about maps

2007-08-09 Thread Michael Price
this list - I've never actually seen any sites using Yahoo's API - if I see a map, it's Google. If I MAKE a map, it's Google. So, to sum up, another vote for Google here. :) Regards, Michael Price

[jQuery] Re: Add class to specific list items

2007-08-07 Thread Michael Price
Glen Lipka wrote: Even though Ive been using jQuery for a while, I still go to this page all the time. http://docs.jquery.com/Selectors I can't remember all of it by heart. :) Near the bottom is has one like the one you wanted, $("p:gt(2)") So we just change it a little to $("li:gt(7)") an

[jQuery] Add class to specific list items

2007-08-07 Thread Michael Price
seven downwards don't count. So that's the question - how do I add a class to the seventh and all further list items? And is it easy to wrap into a function? This list is being sorted via drag and drop so it would need to change each time. Regards, Michael Price

[jQuery] Re: A jQuery success story

2007-07-20 Thread Michael Price
Well, the old ways ARE dead to me now - I can't think of a situation where I'll ever need to write regular old JavaScript again :) But I DID look up eulogise before I posted just to make sure it would be an appropriate word and I think, from the definitions I found, I got away with it either w

[jQuery] A jQuery success story

2007-07-20 Thread Michael Price
works directly with the project and every single person who's ever written a plug-in I've used or answered a question I've asked. Our clients love you - but they don't know it. :) Regards, Michael Price

[jQuery] jQuery in latest Sitepoint Design View

2007-07-18 Thread Michael Price
their book Simply Javascript which I don't think actually involves jQuery at all, but hey. Cool tutorial. :) Regards, Michael Price

[jQuery] Interface Transfer callback function being called twice

2007-07-13 Thread Michael Price
ction was being executed TWICE, so for now I've had to ditch the functionality while I work on a way round it. Does anyone know why this is happening and how to fix it? It was happening with jQ 1.1.2 and jQ 1.1.3.1 and I'm using the full, compressed Interface library. Regards, Michael Price

[jQuery] Interface Autocomplete autofill

2007-07-13 Thread Michael Price
t but this does NOT appear to be happening if the autofill fills in the box. So to sum up, I need the autocomplete to populate the client ID when it autofills the search box with the most appropriate option. Is this possible? Regards, Michael Price

[jQuery] Re: Show / hide options based on class

2007-07-12 Thread Michael Price
possibleOptsRight ).children() .not('.' + $(this).val() ).hide(); }); }); I'll give this a try, thanks. :) Regards, Michael Price

[jQuery] Show / hide options based on class

2007-07-12 Thread Michael Price
ow() and .hide() works in Firefox but not in IE. Is there a better approach to this? -- Regards, Michael Price - [EMAIL PROTECTED] --- Edward Robertson Ltd. - 1 Bondgate, Darlington, DL3 7JA Direct: 01325 245077 - http://www.edwardrobe

[jQuery] Re: Draggable Thickbox?

2007-07-12 Thread Michael Price
ms pleased although evidently if the window has a scroll bar then clicking on the scroll bar drags the window around the screen too! Will have to try and fix that methinks. Regards, Michael Price

[jQuery] Draggable Thickbox?

2007-07-11 Thread Michael Price
, a different plugin which offers similar functionality AND the ability to drag? Regards, Michael Price

[jQuery] Re: 3D carousel?

2007-07-09 Thread Michael Price
_/105-7722567-3277224 <http://amazon.com/ref=topnav_gw_/105-7722567-3277224> Hi Fred, There's one in the Interface effects library as well: http://interface.eyecon.ro/demos You can see it demonstrated from the above link, near the bottom of the Technical Demos list. Regards, Michael Price

[jQuery] Re: How to change of an input textbox

2007-07-09 Thread Michael Price
Try: $("#ID").val("New value"); And: variablename = $("#ID").val(); To retrieve it. Regards, Michael Price

[jQuery] Interface drag/drop: Limiting number of items

2007-06-28 Thread Michael Price
s, with any further items in the bottom list. If an item is dragged into the top list, any item outside the top 3 moves down into the bottom list. I've honestly got no idea where to start with this - can anyone provide some tips? Regards, Michael Price

[jQuery] Re: Could anyone send me a copy of Catfish Advert Plugin 1.3.

2007-06-22 Thread Michael Price
tibilities between the two which prevent Catfish from working on newer versions of jQuery. This isn't something anyone can fix unless someone takes over development of the plugin or Matt, the original author, gets his website back online and updates it himself. Regards, Michael Price

[jQuery] Re: Could anyone send me a copy of Catfish Advert Plugin 1.3.

2007-06-21 Thread Michael Price
Su wrote: When you go 24hours without reposting this question, I'll go digging through the archive I'm pretty sure has a copy of it. I sent him a version I had - not sure it was 1.3 though. The last mention of it on Google was only 1.2 anyway. Regards, Michael Price

[jQuery] Re: Form with multipart/form-data not working

2007-06-11 Thread Michael Price
Looking at the sample form code provided, it doesn't look like it needs multipart/form-data anyway - isn't that only required when a file is being uploaded as part of the form submission? Regards, Michael Price Mike Alsup wrote: jQuery does not perform multipart/form-data enc

[jQuery] Re: Interface Sortables

2007-06-11 Thread Michael Price
}); alert(theIds); } }); }); Thanks! On 7 Jun, 16:54, Robert O'Rourke <[EMAIL PROTECTED]> wrote: > Michael Price wrote: > > > Hi, > > Say I've got this list: > > > > > stuff > > st

[jQuery] Interface Sortables

2007-06-07 Thread Michael Price
stuff I can use SortSerialize but this gives me the POST-ready version. I just need "element3,element1,element2". What is the best way to achieve this? Regards, Michael Price

[jQuery] Re: Problem getting first paragraph

2007-06-05 Thread Michael Price
css("backgroundColor","yellow"); }); The result of five minutes messing about, it seems to do what you're after but I'm sure it can be improved upon. Regards, Michael Price

[jQuery] Re: security advice

2007-06-05 Thread Michael Price
t an error message. I guess what I'm trying to say is apply the same level of security to your AJAX scripts as you do to the rest of your PHP. Regards, Michael Price

[jQuery] Re: Interface TransferTo

2007-06-01 Thread Michael Price
xamples - has gotten me to the point I'm at now so I'm managing OK and I'd hardly call myself an expert in this field. Really cool library too, I think I'm going to have a use for that 3D carousel in future.. Regards, Michael Price

[jQuery] Interface TransferTo

2007-06-01 Thread Michael Price
elect on the page in order to make transfer animations work, instead of using the full file? Any help much appreciated! Regards, Michael Price

[jQuery] Re: Auto-focus next box

2007-05-25 Thread Michael Price
Michael Price wrote: I've got five text boxes representing the four (or five for longer ones) parts of a credit card number. They all follow one another in the DOM without any other elements in between. What I want to do is when 4 digits have been typed into one box, auto-focus the nex

[jQuery] Auto-focus next box

2007-05-25 Thread Michael Price
// IF LENGTH IS 4 FOCUS BOX5 }); But there has to be a shorter way, right? Regards, Michael Price

[jQuery] Re: using jquery to see if an ID occurs twice

2007-05-18 Thread Michael Price
Regards, Michael Price

[jQuery] Re: using jquery to see if an ID occurs twice

2007-05-18 Thread Michael Price
} This should fire the code if the ID occurs more than once. Regards, Michael Price

[jQuery] Re: test if element as a class

2007-04-27 Thread Michael Price
se { return false; } Try, from memory: if ($(this).is(".CLASSNAME")) { // IF TRUE } else { // IF FALSE } Regards, Michael Price

[jQuery] Re: Preview of my new website

2007-04-24 Thread Michael Price
On Apr 23, 8:59 am, Michael Price <[EMAIL PROTECTED]> wrote: > Here's a video preview of the new version of Cyberscore which I'm hoping > to launch in the summer: > > http://www.cyberscore.net/cs4/cs4.wmv > > It's a 21mb WMV file about 12 minutes in length

[jQuery] Re: Preview of my new website

2007-04-23 Thread Michael Price
ions! Thanks :) I unveiled it on what was the site's 5th birthday and I'm hoping to have it launched in the summer - will look forward to taking my place on the jQuery sites list among some truly great sites. Regards, Michael Price

[jQuery] Preview of my new website

2007-04-23 Thread Michael Price
d quite heavily throughout and that's why I'm linking this here, so people can see what I'm doing with it already - and I'm not finished yet! Listen out for the namecheck partway through as well :) Hope you like it - the feedback on my own forums has been very positive! Regards, Michael Price

[jQuery] Input inside table cell

2007-04-04 Thread Michael Price
on the checkbox causes the check, but then a click inside the table cell is detected, forcing the same action and thus unchecking again. How do I prevent this from happening so I can click the cell OR the checkbox and achieve the desired result? Thanks :) Regards, Michael Price

[jQuery] Re: Input box emptying / defaulting back

2007-04-02 Thread Michael Price
Man I love this list. Two perfect responses within 20 minutes :) Thanks guys! Regards, Michael Price

[jQuery] Input box emptying / defaulting back

2007-04-02 Thread Michael Price
on or tabbed to, IF the value is the default value (e.g. "user, game, etc.."), the field should go blank. When the field is tabbed out of or otherwise unfocused, it should return to the default value ONLY IF it's blank. Thoughts? Regards, Michael Price