Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So I am creating an array out of the events created by a certain user on facebook, I have all the API stuff working and everything but I cant document.write it for some reason.

Here is my code:

for( var i = 0 ; i < response.length ; i++ ) 
{
    if (response[i]['eid'] > 0)
    {
        document.write([response[i]['name']] + '</br>' + response[i]['description']),
        console.log([response[i]['name']] + '</br>' + response[i]['description']);
    }
}

When I log it, its fine, but I cant actually display it on the page. alert()'ing it also works.

Any ideas how I can spit these variables out?

share|improve this question
5  
you try putting a semicolon at the end of your first statement instead of a comma? – Jason Jan 4 at 2:11
@Jason That still doesn't explain why this isn't working. The comma operator will evaluate each of its operands, so both functions must be run. – 0x499602D2 Jan 4 at 2:14
Where is this code being run? In a function? – 0x499602D2 Jan 4 at 2:15
@David I know. But it's worth a shot :) – Jason Jan 4 at 2:16
How do you know it's not working? There are any number of reasons why markup appended to the end of the document body might not be visible. As such, document.write() is not very good for debugging. Why not set the HTML of a container element instead? Then you can be sure the container is visible. – harpo Jan 4 at 2:19
show 2 more comments

2 Answers

up vote 5 down vote accepted

When you call document.write after page load, it rewrites the current page which doesn't contain the returned data or loop iterating over that data. Since you are using the FB API, Im guessing this is being run after page load. Try using a client-side templating solution to render all of that data. That way you won't have to do a bunch of string concatenation to create the HTML for your data.

share|improve this answer
How do I go upon doing that? All I have access to on the servers I am working with is ASP Classic. – Rick Bross Jan 4 at 2:26
That's only if his script is contained in the body, it should still work if it's in the head. Also, if the page isn't setup properly as html, document.write may not work, or will work unexpectedly. – wired_in Jan 4 at 2:26
No, it does not work if it is in the <head>. I just tested it out. His Facebook API request, whether via AJAX or JSONP is asynchronous, so when it comes back, the page load event has already fired and when document.write is called, it will rewrite the page. – skaterdav85 Jan 4 at 2:35
@RickBross Try the Handlebars client-side templating library: handlebarsjs.com. In short, you define templates in script blocks with a type of something other than text/javascript, include the library source, and call some functions that the library provides to replace template holders with actual data and it returns a new HTML string that you can insert into the DOM. – skaterdav85 Jan 4 at 2:37
using document.write does not replace the entire page, it replaces the body. Try doing a window load event, set a timer for like 3 seconds inside of that, then do a loop that uses document.write. If what you're saying is correct, the loop wouldn't be able to go past the first iteration, however it does – wired_in Jan 4 at 2:38
show 3 more comments

If the sole purpose of the page is to display the results of the FB api call, then as long as your page is setup as valid HTML and all of your javascript is contained in the head part of the document, document.write should work. document.write is generally only ever used before the page loads, and within the body. Once the page loads, the entire body section of the document is written over and replaced. So if any of your scripts are within the body, it will be replaced also.

A much better alternative in my opinion is to have a div and populate the div with the results.

HTML:

<div id="results">
</div>

Javascript:

var results = "";

for( var i = 0 ; i < response.length ; i++ ) 
{
    if (response[i]['eid'] > 0)
    {
        results += response[i]['name'] + '</br>' + response[i]['description'];
        console.log(response[i]['name'] + '</br>' + response[i]['description']);
    }
}

document.getElementById("results").innerHTML = results;

Edit: My explanation above is wrong, document.write does rewrite the entire document if used after the page loads. My solution above is still 100% valid.

The accepted answer above isn't 100% correct... the code below clearly demonstrates that even when the document is overwritten, at the very least, functions and variables already set in the global object (window) are not lost, and they still run. So if you loop through data that is already set, it will still run and display the results, so there is more to the issue than just the javascript being overwritten.

Try this out:

<!DOCTYPE html>
<html>
<head>
<title>hi</title>
<script type="text/javascript">
    window.onload = function () {
        setTimeout(function () {
            for (i = 0; i < 10; i++)
                // this runs 3 seconds after the page loads, so after the first iteration
                // the entire document is erased and overwritten with 'hi',
                // however this loop continues to run, and write() continues to execute,
                // showing that the javascript still exists and operates normally.
                write();
        }, 3000);
    };

    // this variable will still exist after the page is overwritten
    window.someVar = "foo";

    // this function still exists and executes after the page is overwritten
    function write() {
        document.write("hi");
    }
</script>
</head>
<body>
<div>
    <b>hello</b>
</div>
</body>
</html>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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