I'm trying to have an icon in a grid that allows the user to click on to edit a record. the line in question is
<%= link_to "",edit_user_path(user), class: "icon-pencil", rel: 'tooltip', title: 'Update User' %>
Until recently, this worked in chrome , but it stopped. It does work in firefox and opera ..
any clues on why chrome doesn't work any more ?
thanks
edit:
html code for all three browsers is:
<!DOCTYPE html>
<html>
<head>
<link href="/assets/application.css" media="all" rel="stylesheet" type="text/css" />
</head>
<body>
<table>
<thead>
<tr>
<th>Name</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="/users/101/edit">Julian Lyndon-Smith</a></td>
<td class="actions">
<a href="/users/101" class="icon-eye-open"> </a>
<a href="/users/101/edit" class="icon-pencil"></a>
</td>
</tr>
</tbody>
</table>
</body>
</html>
link_to "#"– FrankieTheKneeMan Sep 18 '12 at 19:58