open new tab
This commit is contained in:
parent
833cff3425
commit
ba6c53072b
24
js/script.js
24
js/script.js
|
@ -3,50 +3,50 @@ $(document).ready(function(){
|
||||||
$("body").delay(500).fadeTo(500, 1);
|
$("body").delay(500).fadeTo(500, 1);
|
||||||
|
|
||||||
$(".mastodon").on( "click", function() {
|
$(".mastodon").on( "click", function() {
|
||||||
window.location.href = "https://fosstodon.org/@alexanderzhirov";
|
window.open("https://fosstodon.org/@alexanderzhirov");
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".twitter").on( "click", function() {
|
$(".twitter").on( "click", function() {
|
||||||
window.location.href = "https://twitter.com/zhirofficial";
|
window.open("https://twitter.com/zhirofficial");
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".linkedin").on( "click", function() {
|
$(".linkedin").on( "click", function() {
|
||||||
window.location.href = "https://www.linkedin.com/in/alexander-zhirov-34b6711a6";
|
window.open("https://www.linkedin.com/in/alexander-zhirov-34b6711a6");
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".facebook").on( "click", function() {
|
$(".facebook").on( "click", function() {
|
||||||
window.location.href = "https://www.facebook.com/azhirov1991";
|
window.open("https://www.facebook.com/azhirov1991");
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".instagram").on( "click", function() {
|
$(".instagram").on( "click", function() {
|
||||||
window.location.href = "https://www.instagram.com/alexanderzhirov";
|
window.open("https://www.instagram.com/alexanderzhirov");
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".git").on( "click", function() {
|
$(".git").on( "click", function() {
|
||||||
window.location.href = "https://git.zhirov.kz/alexander";
|
window.open("https://git.zhirov.kz/alexander");
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".github").on( "click", function() {
|
$(".github").on( "click", function() {
|
||||||
window.location.href = "https://github.com/AlexanderZhirov";
|
window.open("https://github.com/AlexanderZhirov");
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".telegram").on( "click", function() {
|
$(".telegram").on( "click", function() {
|
||||||
window.location.href = "https://t.me/alexanderzhirov";
|
window.open("https://t.me/alexanderzhirov");
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".solus").on( "click", function() {
|
$(".solus").on( "click", function() {
|
||||||
window.location.href = "https://dev.getsol.us/p/alexanderzhirov";
|
window.open("https://dev.getsol.us/p/alexanderzhirov");
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".blog").on( "click", function() {
|
$(".blog").on( "click", function() {
|
||||||
window.location.href = "https://blog.zhirov.kz";
|
window.open("https://blog.zhirov.kz");
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".ftp").on( "click", function() {
|
$(".ftp").on( "click", function() {
|
||||||
window.location.href = "https://ftp.zhirov.kz";
|
window.open("https://ftp.zhirov.kz");
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".email").on( "click", function() {
|
$(".email").on( "click", function() {
|
||||||
window.location.href = "";
|
window.open("");
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue