forked from akaushik509/CoSchedule.com-Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pricing.js
36 lines (27 loc) · 874 Bytes
/
pricing.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// write your code here
document.querySelector("#first").addEventListener("click", clickFirst);
function clickFirst(){
window.location.href="signup.html"
}
document.querySelector("#second").addEventListener("click", clickSecond);
function clickSecond(){
window.location.href="payment.html"
}
document.querySelector("#third").addEventListener("click", clickThird);
function clickThird(){
window.location.href="signup.html"
}
// Extreme down box
document.querySelector("#ek").addEventListener("click", pressone);
function pressone(){
window.location.href="signup.html";
}
document.querySelector("#teen").addEventListener("click", presstwo);
function presstwo(){
window.location.href="signIn.html";
}
document.querySelector("#centre").addEventListener("click", punch);
function punch(){
let x= document.querySelector("#net");
x.innerText= "$39";
}