I have dynamic data ( i.e. , user created ) data in a mySQL table. I want to process it on the client side, that is turn it into HTML.

Currently I use php to take the mySQL data and send it to the client for processing like below:

I plan on replacing document.write with .innerHTML and calling the .innerHTML function with the rest of my page initialization functions.

Someone on this post said this is an ugly solution. If so what is a better way to do this?

One change I could make is to pass the structured data as a global variable and call a function internally (i.e. not from the page). But I would still need to use PHP to write out the structured data directly to the browser..i.e. you would still see it when you view->source the page.

Is there a way to pass structured data (JSON or other) directly to the browser where it is completely transparent? Some way where it won't show up in view->source.

PHP Code:

<?php 
    $Object = new ObjectMaker();
    $ObjectTweet=$Object->makeTweetSmall();
    $ObjectTweet->pageInsert(); 
?>

HTML Output

<script type='text/javascript'>document.write(Arc.ViewHTweet(

'1|Test Account|1329782549|1329782546|\\\'||1|Test     
Account|1329782549|1329782544|\\\\||1|Test 
Account|1329782549|1329782540|hi||1|Test     
Account|1329782549|1329781792|\\\'||1|Test 
Account|1329782549|1329781707|hi\\\\||1|Test      
Account|1329782549|1329781701|/||1|Test 
Account|1329782549|1329781675|<a class=\'bookmark_tweet\' target=\'_blank\' href=\'http://bing.com\'>hi\\\\</a>'

))</script>
link|improve this question

If you want it to render in the browser, there's no way to completely keep it from showing in the source. Users with firebug, or even the base functionality in Chrome show even AJAX loaded content. – AlexC Feb 21 at 15:09
feedback

1 Answer

up vote 1 down vote accepted

I think what they objected to was the use off innerHTML. Some would say that constructing and adding nodes (http://www.w3schools.com/dom/dom_nodes_add.asp) would be the more refined way to do this and you should at least look at it as an option. If it's too much work, I say just go with innerHTML. It's supported by pretty much any browser anyway. (http://www.quirksmode.org/dom/w3c_html.html)

link|improve this answer
I read a bit on this...what was more efficient...nodes or .innerHTML and there seemed to be no consensus...it seemed to be environment dependent. – Hiro Protagonist Feb 21 at 15:24
As best I understand it, the issue isn't environment as much as the quantity of data you're dealing with. If you have a really deep DOM tree, having the DOM read into memory will cause it to take longer. If it's a relatively small tree, adding via DOM is more efficient. Most of all, the using the DOM is often considered "more correct" because it forces you to model all the stuff you're adding in before you add it, where you could add 50 more nodes using the innerHTML method and then you have a harder time modifying again later. – AlexC Feb 21 at 15:43
by deep dom tree...i assume you mean alot of embedded html <div_outer><div_inner></div></div>...etc? – Hiro Protagonist Feb 24 at 17:31
Yeah, that's what I'm referring to. – AlexC Feb 24 at 17:54
feedback

Your Answer

 
or
required, but never shown

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