function a()
{
var r1 = '<div id="title_t" style="display:inline;font-size:150%;color:white;" > </div><div name="btbar" id="bottom_bar" style="position: absolute; margin-left: auto;margin-right:auto;;">' ;
r1 = r1 + '  <img src="first.png" " />';
r1 = r1 + '  <img src="prev.png" />';
r1= r1 + '<label id="cnt"></label>' ;
r1= r1 + '<img alt="Next" src="nxt.png" ' ;
r1= r1 + '<img alt="Last" src="nt.png/>" ' ;
r1= r1 + '<img src="stop.png/>"' ;
r1= r1 + '</div><div style="width: 50%;"><img style="margin-right:1cm;" src="hi.gif" title="hi" onclick="hi();" /></div>'
}
function b()
{
var details=name;
$("#cnt").html(name) ;
}
a();
b();
In the above code, when label (id=cnt) details are populated the buttons next.png,nt.png,stop.png becomes disabled in firefox.Can some on tell me whats happening here.
thanks..