2
votes
Is there a best practice for generating html with javascript
If you absolutely have to concatenate strings, instead of the normal :
var s="";
for (var i=0; i < 200; ++i) {s += "testing"; }
use a temporary array:
…
0
votes
How to post the selections of an HTML List Box with multiple selected values
Below you find an example of a page.
Note that:
the select element (and any form element) needs a name to be included in the post.
only selected options in the sele …
1
vote
Load JSON at runtime rather than dynamically via AJAX
I was thinking of putting it in an iframe but then I realized that you have a problem with that the content-type is application/json. When I tested FF, IE and Chrome was trying to download the file …
1
vote
Sanitize html encoded text (#decimal notation) from AntiXSS v3 output
Your problem is that C# is missinterpretating your regexp. You need to escape the #-sign. Without the escape it matches too much.
private static Regex _whitelist = new Regex(@"
…
2
votes
What’s up with innerHTML and <embed>?
This might not be an answer to your problem, but <embed> has never been part of any standardized version of HTML, says …
5
votes
Base 64 encode vs loading an image file.
Base64 encoding makes the file bigger and therefore slower to transfer.
By including the image in the page, it has to be downloaded every time. External images are normally only down …
2
votes
Generate a comma delimited string from items in a HTML List Box (multiple select) with Javascript
String concatenation is very slow on IE, use an array instead:
function listBoxToString(listBox,all) {
if (typeof listBox === "string") {
listBox = document.getElementBy …
1
vote
Text Input with descriptive text
I don't want to actually have the word 'Search' be the value of the text input though, because it is somewhat important that the user can search for the word search.
…
0
votes
Margin not acting properly in Firefox
#main-navigation {
clear:both;
display:block;
margin:0 -10px 48px;
position:relative;
}
You have 3 values in the margin above. It is supposed to work, but …
