-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.js
More file actions
15 lines (13 loc) · 797 Bytes
/
main.js
File metadata and controls
15 lines (13 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$(function () {
$("#Redes").click(function () {
if ($(this).is(":checked")) {
$("#CardRedes").show();
$("#vistaPrevia").append('<map name="redes" id="mapeo"><area alt="instagram" shape="rect" coords="34,1,54,14" href="https://www.instagram.com/cuencadelplata"><area alt="twitter" shape="rect" coords="12,2,32,14" href="https://www.twitter.com/cuencadelplata"><area alt="facebook" shape="rect" coords="-6,2,11,14" href="https://www.facebook.com/cuencadelplata"><area alt="youtube" shape="rect" coords="58,3,76,13" href="https://www.youtube.com/cuencadelplata"></map>');
//$("#AddPassport").hide();
} else {
$("#CardRedes").hide();
$("#mapeo").remove();
// $("#AddPassport").show();
}
});
});