. , , , ! =]
, , title, , , , :
$("a[rel='portfolio']").each(function(e) {
}
, , , :
var title = $(this).attr("title");
, , , , , ( , , ColorBox).
$(this).mouseover(
function() {
$(this).attr('title','');
}).mouseout(
function() {
$(this).attr('title', title);
});
, :
$(this).click(
function() {
$(this).attr('title', title);
}
);
, :
$("a[rel='portfolio']").each(function(e) {
var title = $(this).attr('title');
$(this).mouseover(
function() {
$(this).attr('title','');
}).mouseout(
function() {
$(this).attr('title', title);
});
$(this).click(
function() {
$(this).attr('title', title);
}
);
});
, , !
.