I want to add a progress bar before my web page's content loads, so I thought of loading it dynamically via javascript. This content has embedded javascript in its html. I tried using jquery.load() which works perfectly besides the fact that it does not support the js that doesn''t work on the returned content

just to make it clear, what i'm doing is something like this to load all the content:

 $("#contentid").html("progressBar.gif");
 $("#contentid").load(script.php #content)
 $("#contentid").show();

and inside the content returned from script.php there are js calls such as:

jquery.load (to crawl for data and displaying it when ready)
document.getElementById('some_div') (for chart api)
snippets that load widgets

I've been trying to work around with using jquery.ajax though not sure if\how its possible with it yet. would love for some input on that.should i be able to achieve that with it?

Any other idea that might show a progress bar till the script's content is loaded will be great. I'm trying to reduce changes in the code structure, since this long load happens only sometimes.

Thanks.

link|improve this question

44% accept rate
feedback

2 Answers

You may add a div with the progress bar, covering all the page, and remove it after the page is loaded, using:

$(window).load(function() {
  $('#progressbar').remove();
});
link|improve this answer
but the DIV with the progree bar wont be shown since the script hasn't returned yet to the client. unless i don't understand you correctly? if the progress bar's DIV is part of the script, it wont be shown until it finishes... – normalppl May 30 '11 at 22:51
Oh. Don't load the page dynamically for this. – eZakto May 30 '11 at 23:00
feedback

JQuery's load method takes a callback function as an argument. That function will get called when the load is completed, so you can hide your progress bar at that point. Here is an example from their API docs:

$('#result').load('ajax/test.html', function() {
  alert('Load was performed.');
});

In your case, it would be something like:

$("#contentid").load(script.php, function(){
  $("#contentid").hide();
});
link|improve this answer
but as i mentioned, the jquery load doesn't support embedded javascript, which is what i have. – normalppl May 30 '11 at 22:53
Can provide add some sample code to show us what you are trying to load into your page? – elevine May 30 '11 at 23:01
its pretty long. just some script that crawls for data via external apis, parses it, analyzes it, and displays it, with some js enhancements. i just want to leave it as a closed module, that the main page loads, while showing a progress bar. It's basically the site's content, which on certain cases takes a lot of time to load – normalppl May 30 '11 at 23:05
You might need a combination of jQuery.get and jQuery.append. It is hard for me to give you a more detailed suggestion, because it is a little ambiguous when you say "embedded javascript in its html". I don't need to see the whole thing, just a snippet or something similar to your code. – elevine May 30 '11 at 23:14
i use $('#picCon').jquery.load(crawlpic.php) to call some simple scripts that crawls for pics. I do a document.getElementById('some_div') when i use the google charts api. I also have a js snippet for some very basic 'tweet' widget. that's pretty much the picture – normalppl May 31 '11 at 7:49
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.