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

matlab - How to equate a structure array to structure array -

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -