SyntaxFix
Write A Post
Hire A Developer
Questions
row = $("body").find('#' + row_id);
More importantly doing the additional body.find has no impact on performance. The proper way to do this is simply:
row = $('#' + row_id);