console.log($(\'\"#\'+d+\'\"\'));
in html i have
5 eeeeeeeeeee
eeeeeeeeeee
Try using:
console.log($("#"+d));
This will remove the extra quotes you were using.