Hello All,
I have a table in the client side and when I try to insert a cell (in javascript) and add to the innerHTML of the cell a user control it works in Internet Explorer, but when I try to do the same in Firefox it does not work.
the code:

var betTable = document.getElementById('BetAskTable');
var newRow = betTable.insertRow(location);

var newCell = newRow.insertCell(-1);
newCell.id = 'Ask' + optionID + 'OddsTD';
newCell.innerHTML = ‘<Table><TR><TD>' + '<img src="Images/Transparent1px.gif">' + '</TD></TR></Table>';

thanks