Satinder Grewal
9 years ago
3 changed files with 61 additions and 22 deletions
@ -1,11 +1,24 @@ |
|||||
|
$('#nav-dashboard').on('click', function() { |
||||
|
$('#nav-dashboard').removeClass( "" ).addClass( "active open" ); |
||||
|
$('#nav-easydex').removeClass( " active open" ).addClass( "" ); |
||||
|
$('#nav-about-iguana').removeClass( " active open" ).addClass( "" ); |
||||
|
}); |
||||
|
|
||||
$('#nav-easydex').on('click', function() { |
$('#nav-easydex').on('click', function() { |
||||
$('#section-dashboard').hide(); |
$('#section-dashboard').hide(); |
||||
$('#section-easydex').show(); |
$('#section-easydex').show(); |
||||
$('#section-about-iguana').hide(); |
$('#section-about-iguana').hide(); |
||||
|
$('#nav-dashboard').removeClass( " active open" ).addClass( "" ); |
||||
|
$('#nav-easydex').removeClass( "" ).addClass( "active open" ); |
||||
|
$('#nav-about-iguana').removeClass( " active open" ).addClass( "" ); |
||||
}); |
}); |
||||
|
|
||||
$('#nav-about-iguana').on('click', function() { |
$('#nav-about-iguana').on('click', function() { |
||||
$('#section-dashboard').hide(); |
$('#section-dashboard').hide(); |
||||
$('#section-easydex').hide(); |
$('#section-easydex').hide(); |
||||
$('#section-about-iguana').show(); |
$('#section-about-iguana').show(); |
||||
|
$('#nav-dashboard').removeClass( " active open" ).addClass( "" ); |
||||
|
$('#nav-easydex').removeClass( " active open" ).addClass( "" ); |
||||
|
$('#nav-about-iguana').removeClass( "" ).addClass( "active open" ); |
||||
}); |
}); |
||||
|
|
||||
|
Loading…
Reference in new issue