A DOM Level 2 HTML method that writes a string of text to a document stream opened by document.open().

learn more… | top users | synonyms

4
votes
5answers
72 views

Display an HTML form via Javascript document.write?

If I am way off on how to employ this code then please forgive me, but is it possible to use something like var url = 'http://www.maxcashtitleloans.com/lmapp.html' document.write('<script ...
0
votes
6answers
48 views

javascript function, how to take the variable within document.write?

I need to call a variable inside a document.write but it doesnt work... example function(){ var variable=document.getElementById("text"); alert("your text "+ variable); } inside a table ...
1
vote
3answers
60 views

what to use instead of document.write or InnerHTML?

Say I have an html code like this: <script> // just an example function to get data from input function getNumber(form) { var userInput = new Number; // convert form values into numbers ...
-1
votes
0answers
19 views

Variables in InnerHTML

Following: <script type="text/javascript"> var B1="Here's the link"; </script> <td height="78" width="140" onmouseover="HPT.innerHTML='<img src=\''+B1+'\'>\';" > // HPT. ...
0
votes
1answer
46 views

Replacing document.write with a jQuery append for script tag

I have an advertising script that generates a 300x250 ad unit, and runs like the following: document.write('<scr'+'ipt language="javascript1.1" src="[removed]"></scri'+'pt>'); I have to ...
1
vote
2answers
89 views

firefox Javascript document.write(onclick) reference error undefined function

I have 2 frames on a webpage with the left frame being populated with a list of country names from javascript object. Each country is also an object within the main object and has 4 name/value ...
0
votes
2answers
64 views

Styling javascript document.write

I am using a google map in a HTML5 page. I want to display the coordinates above the map in a paragraph, but when the following code is execusted it displays the variables on a blank white page. How ...
0
votes
3answers
53 views

String building with Javascript document.write

I am trying to write a div element from javascript. I want the line written as follows, using document.write(): <div class="Square15px" onmouseover="changeColor('boxid')"></div> I call ...
0
votes
2answers
70 views

Javascript login redirect not working

So, for my webdesign class I was asked by my teacher to teach the class simple javascript, and I wanted to make a simple website that either my teacher or I could use to do this. I wanted it to be ...
1
vote
2answers
82 views

Javascript onclick

I'm having a problem with javascript. I'm trying to create a button that will cause some content to load over on top of what I got. I created some functions to do this. It works perfectly if I test ...
0
votes
1answer
75 views

How to display user entered information using JavaScript?

I have a form code tat will allow the user to enter information. I'm trying to display certain parts of that information onto a new page using javascript. Basically, the page is meant to have the user ...
0
votes
1answer
47 views

javascript log() vs document.write() - which to use?

I'm working with Remy Sharp's twitterlib: https://github.com/remy/twitterlib, and in the example file, he uses log(//stuff) to output to the screen. I had previously only encountered document.write() ...
0
votes
1answer
28 views

Could someone explain why this document.write overwrites the entire page?

Here is the code; javascript function Roll() // Results: displays a randomly selected image of a 6-sided die { var roll; roll = RandomInt(1, 6); if (roll == 1) { ...
0
votes
1answer
51 views

Remove Characters in Date/Time document.write script

I have searched for various ways to remove 23:59:59 GMT-0400 (EDT) from a Javascript function I am trying to run. I just want to display Tue Apr 30 2013 (for example). Here is what I have so far... ...
0
votes
1answer
155 views

JavaScript: How to retrieve document object of HTML object tag?

I try to call document.open/write/close sequence inside object element (type="text/html"). In Safari/Chrome I'm able to grab the inner document object by contentDocument attribute. Sample code (using ...
2
votes
2answers
86 views

document.write() works inline but not using jQuery's .html()

If I have a document.write already in my dom as the page loads, it writes only where it's called to write. For example: <div id="d1"> existing text <script>document.write('& doc ...
-1
votes
3answers
30 views

Javascript: trouble with [Object object]

I would like to use this to show on the screen at the end Anonym re But I want to use the variable comments for that and I don't know how to use it. var comments=[{"comment": "re", "author": ...
0
votes
1answer
157 views

How can I make this JavaScript/CSS random animation code simpler? [closed]

The JavaScript code below generates CSS to set up an animation using random values. The code is complicated and repetitive. How can this code be written more elegantly? axis=["X","Y","Z"]; ...
0
votes
0answers
16 views

Why document.writeln in not outputting in new lines? [duplicate]

This is a very basic but not working, let me what what I am missing in this basic stuff :( refereed to this also - Ref for Document.writeln and its pointing the same but not working in my case EDIT ...
0
votes
1answer
124 views

Prompt box with another button to open entered information?

I have a problem with my coding I am trying to have a prompt box that would ask for name phone and address. After entering all of the information a button will be clicked and will show all the ...
1
vote
1answer
42 views

Canvas trouble on document.write

I have trouble in this code (I am working from my local PC). Thks for your help. My code is below: <html> <head> <title>My Test</title> <script ...
0
votes
2answers
310 views

window.setTimeout not working in Firefox 18 and IE10 (Chrome and Safari work)

I have this sample code: <!DOCTYPE html> <html> <head> <title></title> <meta charset="UTF-8"> </head> <body> <script> var ...
2
votes
1answer
46 views

How do I write the number of characters in a div?

I'm trying to display the character count of various divs I have on a page. I have this: <div class="myText">Here is some text.</div> <div class="myText">Here is some more ...
0
votes
1answer
54 views

Trouble calling functions after a Document.write()

I'm having a problem getting a function to call when I click a button. The code I'm using is shown below, and has worked on other pages, which is why I'm confused. Could it be because this code is ...
-1
votes
1answer
61 views

Getting data from a document.write function [duplicate]

Possible Duplicate: node.js and phantom.js in iOS? How can I get data from this table in iOS: <script type="text/javascript" ...
0
votes
2answers
250 views

window.document.write - write html element and more

I have opened a new window, and now I have a button in this new window. Under this button there is a JavaScript function which should submit the form and insert some content into a <p>. This ...
0
votes
2answers
260 views

document.write doesnt work, but console.log does

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( ...
0
votes
2answers
243 views

Show HTML in Javascript If else statement [duplicate]

Possible Duplicate: javascript - document.write error? I have a piece of Javascript that I'm using that checks to see if a div is a certain style and then runs an if else statement: ...
2
votes
1answer
193 views

Why does document.write + echo not work? [duplicate]

Possible Duplicate: how to put javascript variable in php echo I have a problem with PHP. I want to use a PHP variable in JavaScript. However, it does not work! $doccontent is displayed ...
1
vote
2answers
63 views

What factors can change the HTML input byte stream?

As I know, the HTML input is byte stream, and document.write() can change the stream by inserting new bytes. E.g. document.write("<p> an example </p>"); Also the parsing model of HTML5 ...
-1
votes
1answer
23 views

What's the relationship between document.write() and AJAX?

I am not familiar with AJAX. Does document.write() broadly used in AJAX technique? Is there any relationship between them?
3
votes
4answers
135 views

Why document.write(“-->”) does not work as expected?

<p>hello</p> <script type="text/javascript"> document.write("<!--"); </script> <p>world</p> <script type="text/javascript"> document.write("-->"); ...
0
votes
1answer
297 views

HTML, set iframe src as a javascript variable

I would like to display a window in my webpage of another webpage, hopefully via iframe. I need to set the src as a javascript variable, here is the code: <html> <head><title>my ...
1
vote
3answers
303 views

what should I use instead of document.write for a popup

in my web page, I am opening a popup window and generate the HTML for the popup using JavaScript/jQuery: var site="<html> ............. </html>"; var popupWindow = ...
0
votes
1answer
47 views

Using document.image to print JSON image element to browser

I have a JSON that I have loaded string and images into but can't work out how to print the images to the browser. If "document.write(diary_1938[pageRef].date_1);" prints the strings to browser, what ...
0
votes
1answer
250 views

how to use array to create images in javascript?

I want to use array to create some images and also attach a function to each image. I'm new to javascript, there may have many syntax errors, your correction will be highly appreciated. ...
1
vote
1answer
51 views

Show only if option has changed from default

I'd like to show the div "remove-untill-change" (and it's content), but only if the option of the Select element has changed from it's default value. The div must be removed before the option change, ...
1
vote
2answers
281 views

Processing form with no server-side script (javascript) + adding CSS inside of Script

I have been working on a very large form project for the past few days. I finally managed to get tables to work properly within a javascript file that opens a new display window. Now the issue at hand ...
-1
votes
1answer
103 views

Get out a variable from a javascript function

I have this function (I didn't write it): <script> ab(function(r) { var field_number = r.get('field_number'); alert(field_number); }); </script> ...
0
votes
1answer
331 views

jquery dynamic iframe - !document.write and IE issues

Why does this work in all browsers - except IE: var $iframe = $("<iframe name=" + strFrameName +"/>"); var $doc = $iframe.contents(); $doc.find("head").append("<link type='text/css' ...
1
vote
3answers
884 views

Dynamically add script tag with src that may include document.write

I want to dynamically include a script tag in a webpage however I have no control of it's src so src="source.js" may look like this. document.write('<script type="text/javascript">') ...
0
votes
5answers
492 views

How do you write JavaScript with document.write?

I searched for this but I keep finding issues regarding "<scr" + "ipt>" My issue is that I want to generate some JavaScript from my JavaScript code. I have copied a general idea below. How ...
-5
votes
1answer
310 views

Using document.write in one HTML file to write into another HTML file [closed]

Is it possible to use document.write in one HTML file to write into another HTML file?
0
votes
1answer
110 views

Javascript Document Write Inquiry

I have been trying many times to write a code using javascript events so i thought that javascript's document.write will be somehow similar to php's echo. is there any way to force document.write to ...
-2
votes
3answers
414 views

javascript document.write() removes the html from page and display result in a blank page [duplicate]

Possible Duplicate: JavaScript - what are alternatives to document.write? i am creating a javascript function which i want to execute after few seconds but when it executes it removes all ...
1
vote
0answers
199 views

External script included via document.write can not update global variables?

I just did some tests to find out if it is possible to change global variables from external scripts included via document.write. I did expect that is is possible - but it is not! Does some one has an ...
0
votes
3answers
282 views

UPDATE: JavaScript code is displaying as child node

SOLUTION: I figured it out. I used jQuery instead of JavaScript with a little help from zohodiscussions.com. Ajax Google plugin: http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js ...
0
votes
3answers
240 views

Javascript: HTML CODE in javascript into a frame

I'm trying to put a HTML code into a frame. Out of frame I have used: document.write and into? The frame is: var frameTwitter = document.getElementById('FrameTwitter');
0
votes
1answer
200 views

document.write Javascript error [ SOLVED] [closed]

Now I'm getting the following error: ';'expected document.write("<script type='text/javascript'>var twitterwind_option = ...
1
vote
4answers
4k views

ASP.NET C# write value in text box to a label: beginner simple

I am trying to find a very simple example for the syntax to simple write the value entered into a text box, and place that value into a label onclick. As basic as it can get I suppose. I only ...

1 2 3 4