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> </div>
<script> <script>
$(function() { $(function() {
$('.toggleLink').click(function() { $('.toggleLink').click(function(e) {
e.preventDefault();
$(this).next().toggle(); $(this).next().toggle();
}); });