Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var link = '{$list_url}/index.php?a=in&u={$username}&sid={$sid}{$p_callback_id}';
<a href="#" class="visio_button button medium color" id="vote" target=""><span>Vote for {$title}</span></a>
jQuery(document).ready(function(){
jQuery(".visio_button").hover(function(){jQuery(this).stop().animate({opacity:0.8},250)},
function(){jQuery(this).stop().animate({opacity:1.0},250)})
});
<a href="#" id="vote" class="btn btn-success"><span>{$lng->gateway_vote}</span></a>
<div class="col-md-6 image-container">
<a class="popup" id="vote" href="#"><i class="fa fa-check"></i></a><img src="/images/vote.png"></div>
<script>
jQuery(document).ready(function(){
jQuery(".visio_button").hover(function(){
jQuery(this).stop().animate({opacity:0.8},250);
},
function(){
jQuery(this).stop().animate({opacity:1.0},250);
});
var countdown = 5;
var vote = $('#vote span');
function doVote() {
var link = '{$list_url}/index.php?a=in&u={$username}&sid={$sid}';
if (countdown > 0){
$('#vote span').html('Please wait '+countdown);
window.setTimeout(function() {
doVote();
}, 1000);
countdown--;
}
else {
$('#vote').attr('href', ($('#mc_user').val()) ? link + "&mc_user=" + $('#mc_user').val() : link);
$('#vote span').html('{$lng->gateway_vote}');
}
}
doVote();
});
</script>
<script>
jQuery(document).ready(function(){
jQuery(".visio_button").hover(function(){
jQuery(this).stop().animate({opacity:0.8},250);
},
function(){
jQuery(this).stop().animate({opacity:1.0},250);
});
var countdown = 5;
var vote = $('#vote2 span');
function doVote() {
var link = '{$list_url}/index.php?a=in&u={$username}&sid={$sid}';
if (countdown > 0){
$('#vote2 span').html('Please wait '+countdown);
window.setTimeout(function() {
doVote();
}, 1000);
countdown--;
}
else {
$('#vote2').attr('href', ($('#mc_user').val()) ? link + "&mc_user=" + $('#mc_user').val() : link);
$('#vote2 span').html('{$lng->gateway_vote}');
}
}
doVote();
});
</script>