For example, the following selects a division with id=\"2\":
row = $(\"body\").find(\"#2\");
How do I do something like this:
r
You can do it like this:
row_id = 5; row = $("body").find('#'+row_id);