preventDefault on person contact
This commit is contained in:
parent
451dfba2d1
commit
44c871f15b
1 changed files with 2 additions and 1 deletions
|
@ -49,7 +49,8 @@
|
|||
</div>
|
||||
<script>
|
||||
$(function() {
|
||||
$('.toggleLink').click(function() {
|
||||
$('.toggleLink').click(function(e) {
|
||||
e.preventDefault();
|
||||
$(this).next().toggle();
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue