Posts by Giordano Bruno Lazzareschi • 41 points
3 posts
-
2
votes4
answers706
viewsA: Place a url in the text field and show it in a DIV next door
So for this result it is not necessary to AJAX since your user will paste a web image URL. If you put the url in the SRC attribute of the IMG html element as soon as the user paste, you will get the…
-
1
votes1
answer142
viewsA: Problem with setInterval()
Speak my, Look, you need to put in your program a structure that uses the "clearInterval" command. The setInterval is an infinite loop, and will only stop when you ask it to stop, for example: var…
-
1
votes1
answer678
viewsA: setInterval how to come back again after giving a clearInterval?
Speak my, If I understand your question correctly, you want something like a "pause()" and then give a "play()" again. Well, for setInterval this does not exist natively. It will depend on you…