I have two buttons on the screen..
 <div class="checksheet">
        <a href="http://some_link" target="_blank">
        <input class="btn btn-large btn-primary" type="button" value='Graph Search'>
      </a>
    </div>
    <div class="nchecksheet">
   <form action="/link" method="POST">
   <input class="btn btn-large btn-primary" type="submit" value='Analyze Topics'   onclick="$('#loading').show();">
    </form>
    <div id="loading" style="display:none; position:relative ;left:860px"><img src="{{ url_for('static', filename='img/newload.gif') }}" alt="" /></div>
</div>
The problem is.. the first button.. has hyper link over a very small part of the button.. whereas the "submit" type button.. is fine..
By fine I mean... that whole "submit" button is clickable.
and in the first part.. just a very tiny strip (top part of button) is clickable...
What am i missing.
 
     
    