Seeking assistance to add a glow effect to a div when hovered using jQuery. Below is the code snippet:
HTML
<div class="tablerow">
<div class="image">
<img src="1.jpg">
</div>
<div class="info">
<p>
<span class="heading">the PURSUIT of HAPPYNESS</span><br>
<span class="sub">Inspired by a true story.</span><br>
<span class="data">Chris Gardener finds the "i" in Happiness...</span><p>
</div>
</div>
CSS
.tablerow{
width:100%;
height:185px;
padding:0;
}
Looking to apply a glow effect (not shadow) on hover for 8 more divs with the class tablerow using jQuery. Assistance is appreciated as CSS tables have been utilized.