Using jQuery I am trying to access div id=\"element\".
I think the best way to reach your div:
var your_element=$('iframe#uploads').children('iframe').children('div#element');
It should work well.