Forum: JavaScript / DHTML / AJAX Feb 3rd, 2008 |
| Replies: 13 Views: 6,214 There are two solutions you can try: the first one is to call your JavaScript code at the end of the html body tag
<body>
[all HTML]
<script type="text/javascript" src="myscript.js"></script>... |
Forum: JavaScript / DHTML / AJAX Jan 23rd, 2008 |
| Replies: 13 Views: 6,214 The problem seems to be that you can execute the JavaScript code only after all the html document is ready (that means markup, content text and fully loaded images).
If you can wait until... |
Forum: JavaScript / DHTML / AJAX Jan 23rd, 2008 |
| Replies: 13 Views: 6,214 The code above uses the preloading mechanism - it first loads the images and after that it starts loading the document.
What I've used that code for is not what you need. In the case you are... |
Forum: JavaScript / DHTML / AJAX Dec 12th, 2007 |
| Replies: 13 Views: 6,214 Thank you all for your time.
The last solution solved my problem in a very elegant way. |
Forum: JavaScript / DHTML / AJAX Dec 11th, 2007 |
| Replies: 13 Views: 6,214 Thank you for your time to take a look at this post, but I do not think this is what I want.
Let me explain it this way (my bad English might have induced you in error):
-> I have a page with... |
Forum: JavaScript / DHTML / AJAX Nov 28th, 2007 |
| Replies: 13 Views: 6,214 I have a gallery of thumbnails on a webpage, and when clicking on one of the thumbnail, the full image appears in a popup. All good, but the image in the pop-up loads only after the parent page... |