File: D:/HostingSpaces/SBogers10/pvg.komma-mediadesign.nl/wwwroot/public/js/contact.js
// Parent size textarea
$('textarea').parent().height('auto');
// Reset form fields
var reset = '.reset_value';
var colorFocus = '#004B6A';
var colorBlur = '#A2BACA';
$(reset).each(function(){
var label = $(this).attr('data-label');
if($(this).val()!=label)
{
$(this).css({color:colorFocus});
}
});
var prevVal;
$(reset).focus(
function(){
var label = $(this).attr('data-label');
$(this).css({color:colorFocus});
prevVal = $(this).val();
if($(this).val()==label)
{
$(this).caretToStart();
}
}
).keydown(function()
{
var label = $(this).attr('data-label');
if(prevVal==label)
{
$(this).val('');
}
prevVal = $(this).val();
});
$(reset).blur(
function()
{
var label = $(this).attr('data-label');
if($(this).val()=="" || $(this).val() == label)
{
$(this).css({color:colorBlur});
$(this).val(label);
}
}
);