Jquery Click/Focus question

HTML

<body>
    <input type="textbox" name="tb1" class="input1"></input>
    <label> box 1 </label>
    <input type="textbox" name="tb2" class="input2"></input>
    <label> box 2 </label>
</body>

JavaScript

$(function () {
    $('.input2').click(function(e) {
        alert("click");
        e.preventDefault();
    });
});

$('input').blur(function(){
    $('input').focus(function() {
        alert("focus");
    });
});