/    Sign up×
Community /Pin to ProfileBookmark

blinking an input button

is it possible to make an input type=”button” to blink?
thnaks in advance
epelg

to post a comment
JavaScript

2 Comments(s)

Copy linkTweet thisAlerts:
@TheBearMayMay 24.2006 — Just need to reset the background color:
[code=html]
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script type="text/javascript">
function blinker(){
document.getElementById("btnBlink").style.backgroundColor="red";
setTimeout("document.getElementById('btnBlink').style.backgroundColor=''", 500);
setTimeout("blinker()",1500);
}

window.onload=blinker;
</script>
</head>
<body>
<input type="button" value="Testing" id="btnBlink" />
</body>
</html>[/code]
Copy linkTweet thisAlerts:
@GueztOct 27.2008 — [CODE]function blinker(id, times){
var color=document.getElementById(id).style.backgroundColor;
document.getElementById(id).style.backgroundColor="red";
setTimeout(function(){document.getElementById(id).style.backgroundColor=color;}, 110);
if ( 1 < times )
setTimeout(function(){blinker(id, times-1);},220);
}[/CODE]
×

Success!

Help @pelegk1 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.17,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @nearjob,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,
)...