jQuery.load() in Dart -


is there equivalent function jquery.load() in dart?

if not; how load parts of page ajax, alternative loading whole page again? seem people moving different page. thinking of doing httprequest, manipulating history history class. i'm missing spinning wheel in browser tab , refresh button becoming unavailable. how can achieve this?

example: believe that's facebook doing, , maybe github.

if understood correctly, want load html returned request dom element. in case, should work:

httprequest.getstring(uri).then((data) => query("#container").innerhtml = data); 

Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -