K
K
kk952020-10-15 16:43:18
JavaScript
kk95, 2020-10-15 16:43:18

How to start a new instagram profile?

Is there any impact on the issuance, whether a profile is made on a new phone number or on one to which another account is already linked?
At what stage should you think about advertising?
How important is the division of posts into sections for algorithms?
What is the optimal number of photos/videos to upload per week?
etc.
What should be considered in general when creating a new profile so that it does not die before birth?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
S
sv2204, 2016-03-03
@sv2204

Thanks to all! found a solution:
setTimeout(function() {F1(sname, cls);}, 5000);

M
Mikhail Beloshitsky, 2016-03-03
@mbeloshitsky

Use a function setIntervalinstead of setTimeout.

D
Denis, 2016-03-03
@Deonisius

1. First, it is better to call the function again after the successful completion of the ajax request. Those. move setTimeout to "success callback ". And setInterval is not a very good solution for this task, as suggested above.
2. Secondly, calling the function again, as you did, will not lead to anything good, because you are not passing arguments to the function.
3. Thirdly, looking back at point 2, it is not clear which arguments should be passed: either from the previous call, or whether it is necessary to re-run through the "td[data-pll]" elements, collect data from the bottom and pass it to the function .
The syntax for calling a function with parameters passed to it can be like this:

setTimeout(func, delay, [param1, param2, ...]);
// т.е. в вашем случае:
setTimeout(F1, 5000, sname, cls);

A
Arthur, 2016-03-03
@astralo

setTimeout only executes the code once!
you need setInterval
works on the same principle javascript.ru/setInterval

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question