I have the following sample code, when I click on the top button, it's content will be copied to the bottom button, this works fine in Firefox and IE, but in Chrome, it only copies the character you clicked on, not the content of the whole button, but if you click on the edge or 4 corners of the upper button, the whole content will be copied to the bottom button, how do I fix the behavior in Chrome so it will be consistent with the other browsers ?
<HTML>
<HEAD><META http-equiv="Content-Type" content="text/html; charset=utf-8"></HEAD>
<SCRIPT src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></SCRIPT>
<SCRIPT>
$(document).ready(function()
{
$('button').click(function(event)
{
var Clicked_Button=event.target;
$('#Target_Button').html($(Clicked_Button).html());
});
});
</SCRIPT>
<BODY>
<CENTER>
<BUTTON id=Source_Button style="width: 78px; height: 78px;" type=button>
<TABLE width=60 border=0 cellspacing=0 cellpadding=5>
<TR>
<TD align=Center><FONT color=blue size=4>A</FONT></TD>
<TD align=Center><FONT color=blue size=4>B</FONT></TD>
</TR>
<TR>
<TD align=Center><FONT color=blue size=4>C</FONT></TD>
<TD align=Center><FONT color=blue size=4>D</FONT></TD>
</TR>
</TABLE>
</BUTTON>
<P>
<BUTTON id=Target_Button style="width: 78px; height: 78px;" type=button></BUTTON>
</CENTER>
</BODY>
</HTML>