This is a big headache.

I have a simple js file consisting of nothing but document.write() blocks of html content, that I need to perform jquery on.

To put things in perspective, the js file, included like this:

<script language="JavaScript" src="http://external-java-file.js"/>

dumps news in a batch of div's. the trouble is, I need to perform javascript on each seperate article-div (to include it into a custom javascript "scroller". is there anyway for me to firstly "hide" the entire block of news, and then per-div add it it my scroller. Basically I have this from the js file:

<div class="newsContainer">
<div class="newsArticle">bla bla bla</div>
<div class="newsArticle">bla bla bla</div>
<div class="newsArticle">bla bla bla</div>
</div>

Since it's all coming from this stinking external js file through document.write, I can't access it with a seperate code block like this:

<script>
$(document).onload(function(){
$("div.newsContainer").css("display","none");
});
</script>

I'm pretty sure I'm at the end of the road, but I'd like to see if any smart minds have genious solution

link|improve this question

80% accept rate
you cant't edit the external js file? – MeLight Dec 12 '11 at 10:21
@MeLight, sadly no -.- I wish to god I could. – Dynde Dec 12 '11 at 10:22
is there any change if we use $(document).ready() instead of onload – Murtaza Dec 12 '11 at 10:23
feedback

3 Answers

up vote 1 down vote accepted

Try this:

HTML

<div id="news">
    <script language="JavaScript" src="http://external-java-file.js"/>
</div>

JavaScript

$(function() {
    $('#news .newsArticle').hide();
});

If the script is using document.write(), then you will be able to access it's container, #news, once the page has loaded and edit it that way.

link|improve this answer
feedback

You want to use

$(document).ready(function() {
// .. put code here.
});

This will make sure the page and other JS has loaded first.

Firebug console in Firefox is your friend, as you will be able to test your jQuery on the page.

link|improve this answer
1  
You can also use $(function() { //..code }); which is the jQuery shorthand equivalent. – El Ronnoco Dec 12 '11 at 10:25
I prefer to use the above, makes it clearer to the next person to support it that it will only be executed when the DOM has loaded. Comes down to preference I guess. :) – Russell Dec 12 '11 at 10:27
that's fair enough, just thought I'd include it for lazy people (like me) :) – El Ronnoco Dec 12 '11 at 10:52
feedback

Make a css style to hide the newsContainer initially:

.newsContainer {
  display: none;
}

Then add your other stuff in the document ready function of jQuery:

$(function() {
  // do your stuff here
});

If you don't know when that external script does it's job with the news divs, make use of JavaScript's setTimeout. Also remember to set .newsContainer to visible after you're done.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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