Di nako ma check bro judging lng sa imo gipakita na code. Dapat complete HTML, CSS, Javascript.
Tips lang:
Be sure to include the jQuery library before using jQuery in your scripts.
e.g.
HTML Code:
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script>
jQuery(document).ready(function($){
$(".project.small .inside a").hover(
function() {
$(this).find('img:last').stop().fadeTo("fast", .1);
$(this).find('img:last').attr('title','');
},
function() {
$(this).find('img:last').stop().fadeTo("fast", 1);
});
$(".project.small .inside").hover(
function() {
$(this).find('.title').stop().fadeTo("fast", 1);
$(this).find('img:last').attr('title','');
},
function() {
$(this).find('.title').stop().fadeTo("fast", 0);
});
$(".project.small").css("opacity", "1");
});
</script>
Try using the Web Developer Tools -Console Tab to debug.