The code below is a toggle button script which works on by clicking an image that changes its state each time on (4 times).
What I would like to know is how do I attach a value to each of the 4 images and input that value into a hidden textbox field residing in a GridView (ASP.NET VB).
The attaching the value to the images is the real important part.
<script type="text/javascript">
function changeIt(id)
{
var theImg = document.getElementById(id),
x = theImg.src.split("/"),
t = x.length-1,
y = x[t];
if(y == 'excl_mark_50.png')
{
theImg.src='images/cross_50.png'
}
if(y == 'cross_50.png')
{
theImg.src='images/absent_50.png'
}
if(y == 'absent_50.png')
{
theImg.src='images/tick_50.png'
}
if(y == 'tick_50.png')
{
theImg.src='images/excl_mark_50.png'
}
}
</script>
<body>
<a href="#" onclick="changeIt('toggleImage')"><img src='images/tick_50.png' name='toggleImage' id='toggleImage' border='0' /></a>
</body>