I am trying to build a color table just like MS Office font color grid. What is the best way to do it? Table, div or ul?
I have currently used a div but I am struggling to place it with in a ul which is my menu.
HTML
<div id="color">
<table id="colorgrid">
<tr>
<td class="cell" style="background-color: #FFFF00;"></td>
<td class="cell" style="background-color: #7CFC00;"></td>
<td class="cell" style="background-color: #40E0D0;"></td>
</tr>
<tr>
<td class="cell" style="background-color: #9400D3;"></td>
<td class="cell" style="background-color: #FF0000;"></td>
<td class="cell" style="background-color: #FF00FF;"></td>
</tr>
</table> <!--End of colorgrid -->
CSS
#colorgrid{
width: 85px;
height: 45px;
display: none;
position: absolute;
z-index: 3;
}
.row{
}
.cell{
float: left;
border: 1pt gray solid;
margin: 1px;
overflow: hidden;
width: 20px;
height: 20px;
}
JS/jQuery
$(document).ready(function(){
$('#btn').click(function(){
$('.backdrop').css('display', 'block');
$('#colorgrid').css('display', 'block');
$('.backdrop').click(function(){
$('#colorgrid').css('display', 'none');
$('.backdrop').css('display', 'none');
});
$('.cell').click(function(){
var color = $(this).css('background-color');
alert(color);
$('#colorgrid').css('display', 'none');
$('.backdrop').css('display', 'none');
});
});
This code works, I just want an opinion, whats the best way to skin this cat? :-)
P.S. btn is in a li

Thanks,
drjay