tooltip using bootstrap (slightly customized)

You should refer to the following sites
http://www.jwaver.com/django%E3%81%AEtemplate%E3%81%A8bootstrap%E3%81%A7%E3%83%95%E3%82%A9%E3%83%BC%E3%83%A0%E3%82%A8%E3%83%A9%E3%83%BC%E3%82%92popover%E3%81%A7%E5%87%BA%E5%8A%9B%E3%81%99%E3%82%8B

    $("form").submit(function(){

<pre><code>    //エラー初期化
    $("input").removeClass("error");

    $(":text").filter(".validate").each(function(){

        //ID欄が空
        $(this).filter(".auctionid").each(function(){
            if($(this).val()==""){
                $(this).addClass("error");
                $("a[rel=tooltip-error]").tooltip("show");
            }
        });
        //IDが不正
        $(this).filter(".auctionid").each(function(){
            if($(this).val() && !$(this).val().match(/[a-zA-Z]+[0-9]{8,8}/)){
                $(this).parent().append("<p class='error'>オークションIDが不正です</p>");
                $("a[rel=tooltip-error]").tooltip("show");
            }
        });
    });

    //if($("p.error").size() > 0) {
    if($("input.error").size() > 0) {
    //  $("p.error").parent().addClass("error");
        //$("p.error").parent().addClass("error");
        return false;
    }
});
</code></pre>