active questions tagged javascript+html - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T15:17:53Zhttp://stackoverflow.com/feeds/tag/javascript+htmlhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1765780/how-do-you-distribute-an-html-javascript-web-app2How do you distribute an HTML/Javascript web app?Joel Dare2009-11-19T19:10:48Z2009-11-26T14:09:27Z
<p>I've built a web page using HTML and Javascript that acts like a desktop app. I'd like to distribute it to users in the methods they are most familiar with. For Windows users, I think this is an installable application or a "setup.exe" file.</p>
<p>My app, however, works perfectly in the browser. Specifically it can be opened in a javascript popup.</p>
<p>What is the best way to distribute this web app so that it can simply be "installed" on a windows machine? Maybe I use the open source Inno Setup tool to create a setup that somehow opens the browser. Will I need to write a small app that actually opens the browser?</p>
http://stackoverflow.com/questions/1803837/body-tag-disappear-when-using-jquery-load0BODY tag disappear when using Jquery.Load()Martin2009-11-26T14:02:31Z2009-11-26T14:06:01Z
<p>Im trying to make a pop-up like window using jquery and its modal box. First I load the content from a html file:</p>
<pre><code>$("#test").load("test.htm");
</code></pre>
<p>Then I load the popup:</p>
<pre><code>$("#test").dialog("open");
</code></pre>
<p>This works like it should, the content of test.html is injectet into the modal pop-up. There is only one think that is wrong, and that is the BODY tags are gone from the source of the pop-up. I need the BODY tag to be there because I do some formatting based on the BODY tag.</p>
<p>Does anyone know why jQuery.Load() removes the BODY tag? And are there any workarounds?</p>
http://stackoverflow.com/questions/999951/firefox-shows-waiting-cursor-and-loading-even-after-post-request-is-complete2Firefox shows waiting cursor and "loading.." even after post request is completeunknown (google)2009-06-16T07:11:45Z2009-11-26T13:05:38Z
<p>I have a form to upload a file.The <em><code><html></code></em> is as follows:</p>
<pre><code><div id="divModalPopup" class="ui-dialog-content" style="height: 139px; width: 268px;">
<form method="post" action="upload.php" target="uploadframe" enctype="multipart/form-data">
Please choose a file to upload [only zip with shape files and no folders]:
<input type="file" name="uploadFile"/><br/><input type="submit" value="Upload"/>
</form>
<iframe style="display: none;" onload="uploadStatus();" id="uploadframe" name="uploadframe"/>
</div>
</code></pre>
<p>And on clicking upload, i send a post request to a php file,whose response is shown on the iframe. The javascript function for the same :</p>
<pre><code>function uploadStatus(){
var resp = document.getElementById('uploadframe').contentDocument.body.innerHTML;
if ("" != resp){
jQuery("#divModalPopup").html(resp);
}
}
</code></pre>
<p>The issue I am facing here is that, even after i get the response(firebug shows the correct response), <code><firefox></code> shows a waiting cursor and loading.. icon in the tab.</p>
<p>Any idea as to why this is happening??</p>
<p>There's nothing but an echo statement in the php file.</p>
<p>Also, this doesn't happen on other browsers like Chrome and safari. A tcp packet capture shows that the transaction is complete.</p>
http://stackoverflow.com/questions/1803368/ie-8-bug-regarding-overflow-hidden-in-the-iframe0IE 8 bug regarding overflow hidden in the iframeMartin2009-11-26T12:18:16Z2009-11-26T12:18:16Z
<p>Hi,</p>
<p>I'm trying to make a rich text editor with the background set on iframes body.
The background is repeated in y axis and when the user types in the string without any spaces the horizontal scroll appears and the background is moved to the left. I fixed it with overflow-x:hidden in all browsers except IE 8 where the behaviour is the same as with overflow:auto but without horisontal scrollbar appearing after the text gets beyond the intended width.</p>
<p>I want IE 8 to clip the excess content which can not be wrapped the same as with other browsers.</p>
<p>Has anyone had a similar problem?</p>
http://stackoverflow.com/questions/1799739/how-to-get-size-of-div-at-100-zoom1how to get size of DIV at 100% zoom?understack2009-11-25T20:29:25Z2009-11-26T11:59:05Z
<p>If a web page is zoomed out/in in any modern browser, then how I can find size of a DIV element at 100% zoom?</p>
http://stackoverflow.com/questions/1637275/simple-html-sanitizer-in-javascript0Simple HTML sanitizer in JavascriptSander Marechal2009-10-28T13:35:27Z2009-11-26T11:52:14Z
<p>I'm looking for a simple HTML santizer written in JavaScript. It doesn't need to be 100% XSS secure.</p>
<p>I'm implementing Markdown and the WMD Markdown editor (The SO master branch from github) on my website. The problem is that the HTML that is shown in the live preview isn't filtered, like it here on SO. I am looking for a simple/quick HTML santitizer written in JavaScript so that I can filter the contents of the preview window.</p>
<p>No need for a full parser with complete XSS protection. I'm not sending the output back to the server. I'm sending the Markdown to the server where I use a proper, full HTML santitizer before I store the result in the database.</p>
<p>Google is being absolutely useless to me. I just get hunderds of (often incorrect) articles on how to filter out javascript from user generated HTML in all kinds of server-side languages.</p>
<p><strong>UPDATE</strong></p>
<p>I'll explain a bit better why I need this. My website has an editor very similar to the one here on StackOverflow. There's a text area to enter MarkDown syntax and a preview window below it that shows you how it will look like after you submitted it.</p>
<p>When the user submits something, it is sent to the server in MarkDown format. The server converts it to HTML and then runs a HTML sanitizer on it to clean up the HTML. MarkDown allows arbitrary HTML so I need to clean it up. For example, the user types something like this:</p>
<pre><code><script>alert('Boo!');</script>
</code></pre>
<p>The MarkDown converter does not touch it since it's HTML. The HTML sanitizer will strip it so the script element is gone.</p>
<p>But this is not what happens in the preview window. The preview window only converts MarkDown to HTML but does not sanitize it. So, the preview window will have a script element.This means the preview window is different from the actual rendering on the server.</p>
<p>I want to fix this, so I need a quick-and-dirty JavaScript HTML santitizer. Something simple with basic element/attribute blacklisting and whitelisting will do. It does not need to be XSS safe because XSS protection is done by the server-side HTML sanitiser.</p>
<p>This is just to make sure the preview window will match the actual rendering 99.99% of the time, which is good enough for me.</p>
<p>Can you help? Thanks in advance!</p>
http://stackoverflow.com/questions/1795235/any-library-to-convert-richtext-to-html0Any library to convert richtext to html.RPK2009-11-25T07:30:52Z2009-11-26T11:40:55Z
<p>At present I am using <a href="http://code.google.com/p/widgeditor/" rel="nofollow">widgEditor</a></p>
<p>It is a good library in JavaScript but has some minor issues. Is there any other library that can convert a Rich Text into an HTML equivalent?</p>
http://stackoverflow.com/questions/1802425/set-a-value-to-a-textbox-which-had-focus-in-javascript0set a value to a textbox which had focus in javascriptPandiya Chendur2009-11-26T09:00:04Z2009-11-26T09:25:03Z
<p>Hai guys,
I have three textboxes and one listbox... If the user clicks the first textbox and then click a list item the selected item must be set as value to the textbox... I want this in javascript....</p>
http://stackoverflow.com/questions/1801868/persistent-urls-with-a-jquery-slider0Persistent URLs with a jQuery Sliderbryceroney2009-11-26T06:24:00Z2009-11-26T08:10:20Z
<p>Hello,</p>
<p>I've created a simple jQuery slider for my website, and I was wondering if it's possible to assign a URL for each pane.</p>
<p>For example /index.html#about will slide to the about tab by default.</p>
<p>Many thanks for your help and responses.</p>
http://stackoverflow.com/questions/1768581/flash-vs-excanvas-vs-svg-vml2Flash vs. (Ex)Canvas vs. SVG/VMLCrimson2009-11-20T05:54:44Z2009-11-26T07:34:28Z
<p>Hi Guys,</p>
<p>If you were to design a graphics-heavy interactive web application (say a game like Mario Bros.) today, which of the three available technologies would you prefer - Flash, (Ex)Canvas or SVG/VML?</p>
<p>What parameters would you consider and how would you rate these technologies on each parameter? I can think of the following:</p>
<p>a) Speed of rendering
b) Versatility (Separate DOM support etc.)
c) Browser support (current and expected)
d) Developer Community Support</p>
http://stackoverflow.com/questions/1800585/loading-script-tags-via-ajax0Loading script tags via AJAXBahaiResearch.com2009-11-25T23:11:18Z2009-11-26T05:36:40Z
<p>I have a div tag which is filled with script via an ajax call, but the script does not execute.</p>
<p>Is there a way to cause the script to execute?</p>
http://stackoverflow.com/questions/1801448/tell-pure-touch-event-and-pure-gesture-event-apart0tell pure touch event and pure gesture event apart?Mickey Shine2009-11-26T03:56:12Z2009-11-26T05:24:50Z
<p>I am doing iphone web development and I've noticed that: gesture events can also be touch events, which means a touch event handler also fires up when there is a gesture event.</p>
<p>Any way that I can add specific event handler to gesture (not touch)? Or how can I know if this is a pure touch event or a pure gesture event?</p>
http://stackoverflow.com/questions/1679884/alternative-for-sifr2Alternative for SIFRBootcamp2009-11-05T11:18:06Z2009-11-26T00:55:21Z
<p>I wish to know if there is an efficient alternative for SIFR. We are facing performance challenges with SIFR and we wish to replace it. One option is that we just use system fonts. Can someone please provide any direction in which we can research and solve the performance issue that we are having with SIFR. Even a replacement suggestion is welcome. Thanks </p>
http://stackoverflow.com/questions/1799442/how-to-catch-the-end-filename-only-from-a-path-with-javascript0How to catch the end filename only from a path with javascript ?camran2009-11-25T19:36:11Z2009-11-25T23:42:11Z
<p>If I have a variable 'path' which contains a full path with directories and all, to the filename, how can I strip everything except the filename?</p>
<p>ex:
Convert <code>dir/picture/images/help/filename.jpg</code> into <code>filename.jpg</code></p>
<p>Thanks</p>
http://stackoverflow.com/questions/1799339/how-to-call-this-javascript-function-from-inside-another-function0how to call this javascript function from inside another function ?camran2009-11-25T19:19:22Z2009-11-25T22:00:43Z
<pre><code>pic_display+="<img src='"+pic_url+"' onClick='swapImage("+pic_url+");'>
</code></pre>
<p>I am adding an image to the innerHTML of a div with the code above.
I want to call the function <code>swapImage(pic_url)</code> whenever I click on the image.</p>
<p>I have still not figured out the syntaxes in javascript, always confuse them with php.</p>
<p>How should it be written ?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1799329/prototype-next-function0prototype next functionAbsolute02009-11-25T19:16:23Z2009-11-25T21:58:16Z
<p>I have prototype 1.5 and I can't get the "next" function to work:</p>
<pre><code>Event.observe('sameAsBefore', 'click', function(item){
checkbox = Event.element(item);
if (checkbox.checked == true) {
checkbox.next('address1').value = $('hidden_address1').value;
}
}
</code></pre>
<p>Together with the following html:</p>
<pre><code><input id="address1" name="parent[address1]" size="30" type="text" />
</code></pre>
<p>ERROR:</p>
<pre><code>checkbox.next("address1") is undefined
anonymous(click clientX=645, clientY=300)applicat...259176252 (line 32)
[Break on this error] checkbox.next('address1').value = $('hidden_address1').value;\n
</code></pre>
<p>What might be wrong?</p>
http://stackoverflow.com/questions/1799936/onchange-attribute-wont-call-function0onchange attribute won't call functionDeacon2009-11-25T21:04:56Z2009-11-25T21:39:51Z
<p>I have an HTML document (<a href="http://www.wikiupload.com/download%5Fpage.php?id=196262" rel="nofollow">here</a>), which creates an iframe-based media player for a collection of songs within albums (I just used letters to define these albums and songs in the mymusic array, for simplicity).</p>
<p>Focusing on the top 3 iframes, the way I have set out the user interaction is to generate the HTML for forms of available albums and songs using Javascript, and write them to the iframes in the body. If you run it and make a selection in the <strong>Albums</strong> menu, you will see that the options in the <strong>Songs</strong> menu correspond with the <code>mymusic</code> array, so this works.</p>
<p>However, when I choose a song, the function <code>nowplaying(trackindex,albumindex)</code> should be called using an <code>onchange</code> event in the <strong>Songs</strong> form, the same way as in the form generated using <code>showinitial()</code> ... but the function does not get called.</p>
<p>I have ruled out the coding of <code>nowplaying</code> itself as a cause, because even when I change <code>nowplaying</code> to <code>alert("hello")</code>, it does not get called. So this leads me to think the problem is with the <code>onchange</code> attribute in "anything", but I can't see the problem. The way I coded it is no different to before, and that worked fine, so why won't this work?</p>
<p>Any help would be much appreciated! </p>
http://stackoverflow.com/questions/1799533/get-the-selected-option-from-a-list0Get the selected option from a listvitto2009-11-25T19:53:15Z2009-11-25T19:56:41Z
<p>hello, I'm trying to get the selected option via jQuery everytime I change it, and eventually the value attribute, buy I always have problems with js!!</p>
<p>HTML</p>
<pre><code><select>
<option value="us">United States</option>
<option value="gb">United Kingdom</option>
<option value="de" selected="selected">Germany</option>
<option value="fr">France</option>
</select>
</code></pre>
<p>jQuery</p>
<pre><code>$("select").change (function () {
// what can I do there?
});
</code></pre>
http://stackoverflow.com/questions/1798926/div-width-and-height-wont-resize-when-setting-innerhtml0DIV width and height wont resize when setting innerHTML ?camran2009-11-25T18:16:37Z2009-11-25T18:20:31Z
<p>When I set an image to the innerHTML of a DIV container, the width and height of the DIV is still not changed. The div has <code>border:solid</code> style and the border is like "outside" the image...</p>
<p>So the image is shown fully, but it streches outside the div borders, but still shows anyway. Is this a problem ?</p>
<p>Should I use the DOM method instead, will it be better ?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1798177/how-do-i-force-the-browser-to-render-the-tags-rather-than-reveal-them-to-the-user1How do I force the browser to render the tags rather than reveal them to the user on altered div:innerHTML?dacracot2009-11-25T16:31:02Z2009-11-25T17:22:54Z
<p>I'm allowing the user to select text contained within <code><div></div></code> and change it to bolded text. In other words from <code><div>this is some text</div></code> to <code><div>this is <b>some</b> text</div></code>. All is working except that when I change the div.innerHTML to <code>this is <b>some</b> text</code>, the <code><b>some</b></code> tags are shown to the user rather than being rendered as HTML and displaying <strong>some</strong> bolded. This is all happening client side with Javascript.</p>
<p>How do I force the browser to render the tags rather than reveal them to the user?</p>
<p>Per request, here is the code...</p>
<p>HTML...</p>
<pre><code><div id="blob">
One simple, but not very efficient implementation of a dictionary is a linked
list. In this implementation all operations take linear time in the worst case
(and even in the average case), assuming that insertions first check whether the
item is in the current list. A more scalable implementation of a dictionary is a
balanced search tree. In this lecture note we present two even more efficient data
structures based on hashing.
</div>
</code></pre>
<p>Javascript...</p>
<pre><code>tagText(document.getElementById("blob"),"<b>","</b>");
</code></pre>
<p>and...</p>
<pre><code>//======================================================================
function tagText(el,tagstart,tagend)
{
var range = window.getSelection().getRangeAt(0);
var rtxt = range.startContainer.textContent;
var rlen = rtxt.length;
var start = range.startOffset;
var stop = range.endOffset;
var result = rtxt.substring(0,start) + tagstart + rtxt.substring(start,stop) + tagend + rtxt.substring(stop,rlen);
// el.innerHTML = result;
range.startContainer.textContent = result;
var txt = el.innerHTML;
el.innerHTML = txt;
}
//======================================================================
</code></pre>
<p><hr></p>
<p>Looking at the div:innerHTML via firebug shows that the tags are escaped <code>&lt;b&gt;</code> rather than <code><b></code>.</p>
http://stackoverflow.com/questions/1798451/how-to-add-this-javascript-made-table-into-the-page0How to add this javascript made table into the page ?camran2009-11-25T17:13:50Z2009-11-25T17:18:10Z
<p>I have this function which gets some variables and adds shadow to them, and the displays them in a table. </p>
<p>My Question is, how can I add the table into the DIV, which I have on my page?
It's probably really easy, just that Im new to javascript. Thanks!</p>
<pre><code> function drpShadow(pic_url, width, height) {
var i;
var pic_display
= "<table border='0' style='display:inline;' cellspacing='0' cellpadding='0'><tr><td width='4px' height='" + height + "'><img src='/SV/Graphics/drop_shadow_top_left_corner_4x4.jpg'><br />";
for (i = 0; i < (height - 4); i++) {
pic_display += "<img src='/SV/Graphics/drop_shadow_left_4x1.jpg'><br />";
}
pic_display +=
"</td><td width='" + width +
"' height='" + height +
"'><img src='../temp_images/" + pic_url + "'></td></tr><tr><td colspan='2' height='4px' width='" + (width + 4) + "'><img src='/SV/Graphics/drop_shadow_left_bottom_corner_4x4.jpg'>";
for (i = 0; i <= (width - 6); i++) {
pic_display += "<img src='/SV/Graphics/drop_shadow_bottom_1x4.jpg'>";
}
pic_display
+= "<img src='/SV/Graphics/drop_shadow_right_bottom_corner_4x4.jpg'></td></tr></table>";
return pic_display;
}
</code></pre>
http://stackoverflow.com/questions/1798097/getting-element-inner-text-only-when-an-img-tag-exists-inside-using-jquery-s0Getting element inner text ONLY when an <img /> tag exists inside using jQuery 's html()jhat2009-11-25T16:20:19Z2009-11-25T16:27:12Z
<p>I'm trying to get the html inside several elements like this:</p>
<pre><code><div class="option s12 pointer"><img class="fl mt2" src="http://web.iboomerang.com/icons/fff/magnifier.png" /> Trainings by date</div>
</code></pre>
<p>Is there a way to strip the tag (like PHP's strip_tags does) and leave only "Trainings by date".</p>
<p>Note: I need to avoid using functions like split() or replace(), because of how versatile this app needs to be.</p>
http://stackoverflow.com/questions/1797875/is-newline-n-not-working-for-innerhtml-in-ie0is newline (\n) not working for innerHTML in IE?René Nyffenegger2009-11-25T15:53:08Z2009-11-25T16:26:31Z
<p>Hello</p>
<p>I am facing the following problem: I have a HTML document where I want to print basic status/debug/etc messages.</p>
<p>So, the HTML document contains an empty pre-element whose id is <em>out</em>:</p>
<pre><code><body onload='init () && main();'>
<pre id='out'>
</pre>
</body>
</html>
</code></pre>
<p>The init() function assigns the pre element to a variable:</p>
<pre><code> var out_div;
function init() {
out_div = document.getElementById('out')
return 1;
}
</code></pre>
<p>Then, in order to print something into the pre-div, I use this function:</p>
<pre><code> function txt_out(txt) {
out_div.innerHTML += "\n" + txt
}
</code></pre>
<p>The newline should make sure that each invocation of txt_out is written on its own line.
This works as expected in Firefox. IE however doesn't seem to pay attention to the \n. So, is this wrong on IE's part, or am I doing something wrong?</p>
http://stackoverflow.com/questions/1795748/button-vs-input-typesubmit-vs-a-onclickdocument-formname-submit3button vs input type="submit" vs a onclick="document.formname.submit()"Nick2009-11-25T09:37:14Z2009-11-25T16:11:22Z
<p>Hi guys,</p>
<p>Just trying to implement these buttons at the moment: <a href="http://particletree.com/features/rediscovering-the-button-element/" rel="nofollow">http://particletree.com/features/rediscovering-the-button-element/</a></p>
<p>Can't decide which to go for, since here we mostly use IE6. As far as I can tell...</p>
<p><strong>button:</strong></p>
<ul>
<li>Lets you submit the form as usual (ie hitting enter on the form), lets you disable it, standards compliant, doesn't rely on javascript</li>
<li>No :hover in IE6 without using Suckerfish, but you can't then style it accordingly and are limited to just one background color & has a horrible black border in IE6</li>
</ul>
<p><strong>input type="submit":</strong></p>
<ul>
<li>Also let's you submit the form as usual</li>
<li>Can't include images so you'll have a silly amount of class files for what I need, and again no :hover in IE6 without Suckerfish</li>
</ul>
<p><strong>a onclick="document.formname.submit()"</strong></p>
<ul>
<li>Easy to style in IE6 without any hacks</li>
<li>Not so easy to work with, without hacks! ie you can't submit the button with the enter key</li>
</ul>
<p>... so I'm just wondering, of the three, which one is generally preferred? Ideally I guess I want function over style, but it is a requirement to have Javascript enabled here (it's only for an intranet page) and I guess generally people don't mind too much what's going on in the background? Hmm.</p>
http://stackoverflow.com/questions/1795011/how-to-create-a-table-with-javascript0how to create a table with javascript ?camran2009-11-25T06:23:43Z2009-11-25T15:54:29Z
<p>I have this php function, which I want to convert to javascript function, but I don't know how to create a table in javascript.</p>
<p>I guess I have to have a container (DIV) to insert the table into with javascript.</p>
<p>Here is the php function simplified: (it counts height and width and repeats a 1px shadow to create a drop-shadow effect)</p>
<pre><code>function drpShadow($pic_url){
$pic_display="<table border='0' style='display:inline;' cellspacing='0' cellpadding='0'><tr><td width='4px' height='$height'><img src='/SV/Graphics/drop_shadow_top_left_corner_4x4.jpg'><br>";
for ($i=0; $i<($height-4); $i++){
$pic_display.="<img src='/SV/Graphics/drop_shadow_left_4x1.jpg'><br>";
}
$pic_display.="</td><td width='$width' height='$height'><img src='../temp_images/$pic_url'></td></tr><tr><td colspan='2' height='4px' width='($width+4)'><img src='/SV/Graphics/drop_shadow_left_bottom_corner_4x4.jpg'>";
for ($i=0; $i<=($width-6); $i++){
$pic_display.="<img src='/SV/Graphics/drop_shadow_bottom_1x4.jpg'>";
}
$pic_display.="<img src='/SV/Graphics/drop_shadow_right_bottom_corner_4x4.jpg'></td></tr></table>";
return $pic_display;
}
</code></pre>
<p>Please guide me, or even better, give me some code :)</p>
<p>Thanks</p>
http://stackoverflow.com/questions/974046/show-additional-content-based-on-selection0Show Additional Content Based on Selectionjay-252009-06-10T06:53:43Z2009-11-25T14:00:05Z
<pre><code>Is this also the Risk Address:
<select name="InsuredSALicense2" id="InsuredSALicense2">
<option>Please Select</option>
<option>Yes</option>
<option>No</option>
</select>
</code></pre>
<p>If the answer here is "No" then a hidden drop down must be created.</p>
<pre><code>If No, Please give details:
<textarea name="InsuredOther License2"
id="InsuredOther License2"
cols="30" rows="4"></textarea>
<form id="form4" name="form4" method="post" action="">
</code></pre>
<p>Say that on the form I want to create a drop down (example: "Do you...", please select yes/no): if the answer is "Yes" then drop down a section if no then don't drop down section.</p>
<p>This form was done in dreamweaver cs4.</p>
http://stackoverflow.com/questions/1795438/load-and-execution-sequence-of-a-web-page2Load and execution sequence of a web page?Tower Joo2009-11-25T08:26:32Z2009-11-25T09:00:07Z
<p>Hi All:</p>
<p>I did some web based projects. But I don't think too much about the load and execution sequence of an ordinary web page. But now I need to know detail. It's hard to find the result from Google or SO. So I created such a new post.</p>
<p>a sample page is like this:</p>
<pre><code><html>
<head>
<script src="jquery.js" type="text/javascript"></script>
<script src="abc.js" type="text/javascript">
</script>
<link rel="stylesheets" type="text/css" href="abc.css"></link>
<style>h2{font-wight:bold;}</style>
<script>
$(document).ready(function(){
$("#img").attr("src", "kkk.png");
});
</script>
</head>
<body>
<img id="img" src="abc.jpg" style="width:400px;height:300px;"/>
<script src="kkk.js" type="text/javascript"></script>
</body>
</html>
</code></pre>
<p>And css/js file are some dummy codes. </p>
<p>So the question is:</p>
<ol>
<li>How does this page is loaded?</li>
<li>What is the sequence of the loading?</li>
<li>when the js codes are executed?(inline and external)</li>
<li>when is the css executed(be applied)?</li>
<li>when does $(document).ready be executed?</li>
<li>will abc.jpg be downloaded? Or just download kkk.png?</li>
</ol>
<p>In my knowledge, I've got the following understanding:</p>
<ol>
<li>the browser loads the html(DOM) at first</li>
<li>the browser starts to load the external resources from top to bottom line by line</li>
<li>if a <code><script></code> is met, the loading will be blocked and wait till the js file is loaded and executed and then continue</li>
<li>other resources(css/images) are loaded in parallel and executed if needed(like css)</li>
</ol>
<p>Or</p>
<p>the browser parses the html(DOM) and get the external resources in an array(stack) like structure. after the html is loaded, browser starts to load the external resources in the structure in parallel and execute, until all resources are loaded. Then DOM will be changed corresponding to the user's behaviors depending on the js.</p>
<p>Can anyone give a detailed explanation about what happen when you've got the response of a html page? Does this vary in different browsers? Any reference about this question?</p>
<p>Thanks.</p>
<p>EDIT:</p>
<p>I did an experiment in Firefox with firebug. And it shows as the following image:
<img src="http://i48.tinypic.com/21n0hw7.jpg" alt="alt text"></p>
http://stackoverflow.com/questions/1501048/steps-to-setting-up-my-first-ecommerce-site0Steps to setting up my first eCommerce siteBloudermilk2009-09-30T22:45:01Z2009-11-25T08:40:50Z
<p>I'm about set up my first eCommerce site. I was hoping you could recommend some shopping cart software. What are the perks of using pre-built software rather than developing some simple solution catered to my needs. Also, are there pre-written Terms and conditions for sites? Or templates that outline what aspects need to be addressed? What other things should I look out for when building this website?</p>
<p>Also, I develop in PHP server side, so software in that language would be best.</p>
http://stackoverflow.com/questions/1795019/form-entry-gets-inserted-into-the-html-code0Form entry gets inserted into the HTML code?RPK2009-11-25T06:25:31Z2009-11-25T07:01:16Z
<p>I am using following code to display HTML Form on my web page. This code also uses a third-party .js file that is linked to it. Everything is working fine except that when the first record is inserted and after saving the record the control comes back to this form, the company name entered in the first entry is seen in the code itself. I mean to say that the entry company name is somehow gets inserted into the HTML code.</p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script type="text/javascript" src="widgEditor.js"></script>
<title>Job Listing Entry</title>
</head>
<body>
<Form id="frmNewEntry" method="post" action="insert_listing.php">
<table id="tblEntry" cols="2" border="0">
<tr><td>Date:</td><td><input id="LDate" name="LDate" type="text" size="50">[yyyy/mm/dd]</td></tr>
<tr><td>Places:</td><td><input id="Places" name="Places" type="text" size="50" onblur="this.value=MakeInitialCapital(this.value);"></td></tr>
<tr><td>Company:</td><td><input id="Company" name="Company" type="text" size="50" onblur="this.value=MakeInitialCapital(this.value);"></td></tr>
<tr><td>Designation:</td><td><input id="Designation" name="Designation" type="text" size="50" onblur="this.value=MakeInitialCapital(this.value);"></td></tr>
<tr><td>Project Details:</td><td><textarea class="widgEditor" id="ProjectDetails" name="ProjectDetails" cols="100" rows="10""></textarea> <br></td></tr>
<tr><td>Desired Candidate:</td><td><textarea class="widgEditor" id="DesiredCandidate" name="DesiredCandidate" rows="5" cols="100" onblur="this.value=MakeInitialCapital(this.value);"></textarea> <br></td></tr>
<tr><td>HR Name:</td><td><input id="HRName" name="HRName" type="text" size="50" onblur="this.value=MakeInitialCapital(this.value);"> <br></td></tr>
<tr><td>HR Contact:</td><td><input id="HRContact" name="HRContact" type="text" size="50" onblur="this.value=MakeInitialCapital(this.value);"> <br></td></tr>
<tr><td>Email:</td><td><input id="Email" name="Email" type="text" size="50"> <br></td></tr>
<tr></tr>
<tr><td><input id="Submit" name="Submit" value="Submit" type="submit"> <br></td></tr>
</table>
</Form>
</body>
</html>
<script language="JavaScript" type="text/javascript">
function MakeInitialCapital(str)
{
return str.toLowerCase().replace(/\b[a-z]/g, cnvrt);
function cnvrt() {
return arguments[0].toUpperCase();
}
}
</script>
</code></pre>
<p>For example, if I had typed the company name, say, Example Solutions, then the first line of the above code gets modified as:</p>
<pre><code>Example Solutions <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
</code></pre>
http://stackoverflow.com/questions/1795043/autocomplete-filling-out-email-website-address-in-forms-in-flash0Autocomplete filling out Email/Website/Address in Forms in Flash?viatropos2009-11-25T06:33:18Z2009-11-25T06:45:52Z
<p>How do websites I've never been to fill out my information (email address, name, phone, etc.)? Sometimes they pick my old email instead of my new one, so they must be reading it from something I might be able to access with some javascript. I would like to be able to do something like this in Flash, so any ideas how I could tap into how it works with some javascript?</p>
<p>Update:</p>
<p>Having a little better understanding of what's going on, since the browser is suggesting the autocomplete values, is it possible to, in the Flash HTML template/wrapper, create forms with the same fields as your flash project, and when the user focuses in on a flash form item, it quickly shifts focus to the equivalent "hidden" html form item, gets the autocomplete value, and sends it back to flash? Is that possible?</p>
<p>Thanks!</p>