pickles/bootstrap/public/js/core.js
2012-10-10 21:36:51 -04:00

24 lines
476 B
JavaScript

window.onload = function()
{
if (window.jQuery)
{
$(document).ready(function()
{
$('.tip').tooltip({
'placement': 'top',
'trigger' : 'hover'
});
if ($('.content form').length)
{
$('.content form input:eq(0)').focus();
}
$('.content form input, .content form button').focus(function()
{
$('.content form label span.label').hide().removeClass('hidden');
$(this).parent('.well').children().find('span').show();
});
});
}
}