Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function()
- {
- $(".defaultText").focus(function(srcc)
- {
- if ($(this).val() == $(this)[0].title)
- {
- $(this).removeClass("defaultTextActive");
- $(this).val("");
- }
- });
- $(".defaultText").blur(function()
- {
- if ($(this).val() == "")
- {
- $(this).addClass("defaultTextActive");
- $(this).val($(this)[0].title);
- }
- });
- $(".defaultText").blur();
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement