I use codes with blink;
Jquery;
<script type="text/javascript">
var blink = function(){
$('#blinker').toggle();
};
$(document).ready(function() {
setInterval(blink, 100);
});
</script>
Page;
[full_column align="center"][su_button url="#basvuru" class="fancybox" background="#b21f30" size="6"] <div id="blinker">ÜCRETSİZ PROGRAMA BAŞVUR</div>[/su_button][/full_column]
Website: www.varsiteam.com
Try with :
If you look at console you will see this error:
To fix that you have to put your function inside of
$(document).ready
event. When you call$('#blinker').toggle();
it tries to use jQuery object which is undefined if you not put it in$(document).ready
event. That is how jQuery works.