Leon Barkan
Leon Barkan

Reputation: 2703

Wait for ajax element to complete (.Net Web browser control)

How can i wait for page inner element to complete ?

Tried:

how can i wait for inner elements of the page to complete?

(that elements did't have names / id's)

Upvotes: 0

Views: 830

Answers (1)

ali
ali

Reputation: 1351

In server-side code, you cannot make sure when the inner content will be ready or loaded. You have to use client-side scripts to decide on that. If you only want to wait for document fully loaded, you can use Jquery document ready function like;

$(document).ready(function() {
    // do something
});

Upvotes: 1

Related Questions