$(document).ready(function(){ $('.header-login-dialog .text input').focus(function () { $(this).val(''); }); $('.header-login-dialog .password input').focus(function () { $(this).val(''); }); }); function loadPiece(href,divName) { $(divName).load(href, {}, function(){ var divPaginationLinks = divName+" .paging a"; $(this).removeClass('loading'); $(divPaginationLinks).click(function() { var thisHref = $(this).attr("href"); loadPiece(thisHref,divName); return false; }); }); } function refreshWitThumnailsV2(divName, id, dir){ sUrl = '/SwfUploads/ajaximageviewer/'+id+'/'+dir; // console.log(sUrl); $.ajax({ url: sUrl, cache: false, success: function(html){ // console.log(html); // console.log(divName); $('#'+divName).removeClass('loading'); $('#'+divName).html(html); } }); }