Hi I'm looking to get the value from a HTML Tables Cell and then display it into a JQuery Dialog Window when the user has clicked in that cell How can I achieve this ? Here's my code currently
<script>
$(function() {
$( ".dialog" ).click(function(){
$('#dialog').dialog({
resizable:true,
modal:true,
});
});
</script>