forked from PritamSarbajna/tourism-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
24 lines (23 loc) · 666 Bytes
/
script.js
File metadata and controls
24 lines (23 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
function removeall(){
$('.cir_border').css('border','none');
}
$('#sec').on('click',function(){
removeall();
$('#sec').css('border','2px solid whitesmoke');
$('#sec').css('border-radius','20px');
});
$('#pri').on('click',function(){
removeall();
$('#pri').css('border','2px solid whitesmoke');
$('#pri').css('border-radius','20px');
});
$('#tri').on('click',function(){
removeall();
$('#tri').css('border','2px solid whitesmoke');
$('#tri').css('border-radius','20px');
});
$('#quad').on('click',function(){
removeall();
$('#quad').css('border','2px solid whitesmoke');
$('#quad').css('border-radius','20px');
});