2
Answers

changed the button color after specific time with setTimeout

Tadej Brvar

Tadej Brvar

9y
609
1
Hello,

I build my website with Zyro SiteBuilder.
I want to add this javascript code and I have some problems:

<script type="text/javascript">
function setToRed ( )document.getElementById("colourButton").style.color = "#FF0000";
setTimeout ( "setToGreen()", 10000 );
}
function setToGreen ( )
{document.getElementById("colourButton").style.color = "#00A300";
}
</script>

<a href="http://goo.gl/1LvXsc" target="new window_a"><input type="button" name="clickMe" id="colourButton" value="Moon Doge" onclick="setToRed()"/>
<a href="http://goo.gl/kQUEpY" target="new window_a"><input type="button" name="clickMe" id="colourButton" value="Free Doge"onclick="setToRed()"/>

... I have to add aprox. 30 more links-buttons.

After a click on a first button (Moon Doge) everything works perfect (it
open a new tab, the text of a link change color to red and after 10 seconds text changed into green).

The problem is when I click on a second button (Free Doge). It opens a new tab, but it changed the color
of the first link - Moon Doge - it should change, of course, the text of a second button.

Could you help me with this issue?

Thanks,
Tadej

p.s.: sorry for my English, it is not my native language
Answers (2)
1
Bryian Tan

Bryian Tan

NA 9.4k 887.3k 12y
Hi,

It sound like you have version 655 but the mdf version is 661 (from MS SQL Server R2). There are couple of options.

  1. upgrade your SQL Server 2008 to SQL Server 2008 R2
  2. use the Generate Scripts tool to generate scripts for the database objects (abc) and run the script on your SQL server.
NOTE: You might have Microsoft SQL Server 2008 R2 Management Studio on your machine but that doesn't mean that you have Microsoft SQL Server 2008 R2
Accepted
1
Bryian Tan

Bryian Tan

NA 9.4k 887.3k 12y
Right click the database, Tasks, Generate Scripts...

http://msdn.microsoft.com/en-us/library/ms178078%28v=sql.105%29.aspx
1
mahesh kumar B M

mahesh kumar B M

NA 42 1.1m 12y
hi, where do we find this Generate Scripts tool to generate scripts for the database objects and plz share the link if its available. What are the steps to be followed to convert from sql server 2008 to sql server 2006 R2