Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS adding delay to dojo

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #37756
    amyth91
    Participant
    dojo.addOnLoad(loader);

    function loader() {
    var loading = _ui.list.innerHTML = "";

    dojo.xhrGet({
    url: "php/getDomainInfo.php?domain=" + _domain,
    delay:1000,
    handleAs: "json",
    timeout: 5000,
    load: function(response, details) {
    _refreshSectionVisits(response);

    },
    error: function(error_msg,details) {
    _handleError();
    }

    });
    }

    how do i add a delay “delay:1000,” just doesn’t work here

Viewing 1 post (of 1 total)
  • The forum ‘CSS’ is closed to new topics and replies.