I\'m using jqGrid\'s Drag and Drop functionality and I would like to know how I can alter the CSS of the row that is being dragged around.
I\'m thinking I can add a
Well you can add class to your div or row like this:
Here's the Fiddle
$(document).ready(function(){ $('div').click(function(){ $(this).addClass('red'); }); });