preventDefault on person contact

This commit is contained in:
Sanj 2013-01-05 17:55:41 +05:30
parent 451dfba2d1
commit 44c871f15b

View File

@ -49,7 +49,8 @@
</div>
<script>
$(function() {
$('.toggleLink').click(function() {
$('.toggleLink').click(function(e) {
e.preventDefault();
$(this).next().toggle();
});