Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  
  
<table id="messages">
    
  <tr style="background:#5D1B90; color:#fff;"
      onmouseover="ChangeColor(this, true, false);" onmouseout="ChangeColor(this, false, false);" onclick="DoNav('showmail.jsp?mid=<%=messageid%>');">    
<td colspan="3">John  :   "Hello"      10:00</td>
    <td><input type="checkbox" onclick="DoRemove(event);"></td> 
  </tr>
    
</table>
  
  
  
</body>
</html>
 
function DoNav(theUrl){
   document.location.href = theUrl;
}
function DoRemove(e){
    if (!e) e = window.event;
    e.cancelBubble = true;
    if (e.stopPropagation) e.stopPropagation();
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
roXonpro
0viewers