html

I want to load multiple images very fast on a website, what's the best method?

So.. my idea is to load a full manga/comics at once, with a progress bar included, and make sort of a stream, like: My page loads the basic (HTML+CSS+JS) (of course) As done, I start loading the imgs(the URLs are stored on JS var) from my server, one a time (or some faster way) so I can make a sort of progress bar. ALTERNATIVE: Is ther...

What's the best way to create a simple mobile version of a website?

I'm building a small site for a company, and would like to build a version optimised for smartphones with full internet browsers (iPhone/Android etc). I'm leaning towards media queries, because this is supported by webkit which most of these seem to use. Is this the best? If so, what media query would be the best? I'm leaning towards:...

Software to check webpage in multiple browser?

I am working in creating a website and i want to check in multiple browsers for compability test without manually opening each browser and check the website. Do you guys know if there is any software where i can just give a link and it loads the page in multiple browsers? ...

How can I add a new Table with a Button click event MVC?

I have a table with text box asking for Name and Address for reference. If need be, I would like the user to have the ability to add more and not be restricted to just one. How would I add a new table to a form by clicking on my "getMore" button? <table style="width:50%;"> <tr> <th colspan="2">Reference</th...

JavaScript Traverse Table Issue

Why does this script bail out (IE) or stick (FF) at the first table cell containing text that it finds? <!html> <head> <script type="text/javascript"> function CheckChildren(obj) { alert(obj.id + ' ' + obj.tagName + ' ' + obj.childNodes.length); for ( i = 0; i < obj.childNodes.length; i++) { Check...

Dynamically switching XSLT stylesheets in the browser?

The short version: Is it possible to switch to alternate XSL stylesheets in the browser, a la CSS stylesheet switching? The long version: I've always admired the CSS Zen Garden; it excellently showcases the power and flexibility of stylesheets. However, it also shines a light on one of the great weaknesses of CSS: a quick View Source ...

jQuery selectors?

Using jQuery I am trying to create a function to show and hide the DIV below the table/tr that has been clicked, but when I click in one, all the DIVs will slide up, also slide down it is not working. I tried if ($(".container:first").is("hidden")) but I guess is not the first element under element clicked but first element on the docum...

Div positioning

Hi people, So, i have some block, and this block must contains two divs, first div must be at left(attached to block), second at right(attached to block), and this two divs must coverage all block size. ...

Looking for a good HTML parser that will provide offsetHeight like values

I have a project which requires me to load an HTML document as a string, and parse it. I am trying to determine which HTML node will exceed the height of a page (8.5x11) so I can insert a ‘page-break-after’ before it. This will be done with a .NET dll I am producing. I have tried using the mshtml dom. It’s not easy to load a string valu...

HTML pressing spacebar moves page down?

I have a problem that I'm not even sure what to search for in order to fix. When I press the spacebar my entire page moves down (I don't want this to happen). My BODY tag is styled to overflow:hidden (if that has anything to do with it) so it won't have any scrollbars. I'm usually pretty good at executing the preliminary troubleshootin...

HTML code for 3d games!

Hi I want to find some HTML codes for 3d games would you send me some links for it? i have searched a lot but they were not good! thanks ...

Is there a textArea for flex, which supports html-text with css formatting?

I would like create a text area with code highlighting in flex. Is there an advanced textArea witch suports css for real. For example: myHtmltext:String = '<span class="keyword"> #include </span>'; myTextArea:TextArea = new TextArea(); myTextArea.htmlText = myHtmltext; ...

table > tbody > tr > td > div > toggled span and textbox without the table resizing?

So I've got this control I'm trying to make. It's an in-place text editor for a website, and the basic idea is that it will display a label with some text, and when you click the text, the label disappears and a textbox appears in it's place, so that the user can edit the data. The general layout is something like this (id's and even...

How to make HTML open a hyperlink in another window or tab?

This is a line for a hyperlink in HTML: <a href="http://www.starfall.com/"&gt;Starfall&lt;/a&gt; Thus, if I click on "Starfall" my browser - I am using FireFox - will take me to that new page and the contents of my window will change. I wonder, how can I do this in HTML so that the new page is opened in a new window instead of changin...

Style a <label> based on its <input>'s state

Is it possible, with only CSS, to style an HTML label dependent on its input's state? In my case, I want to style an <input type="checkbox"> based on whether it's checked. I tried putting the label inside the input, but Firefox and Chrome (at least) seems to parse them as siblings, even though they're clearly nested in the input source...

Created a simple program to search a website but not searching properly in IE after uploading to sharepoint

It works well with firefox but not with internet explorer. It goes to the site but makes me manually search again. ...

A regex that converts text lists to html in PHP

Hi, I'm trying to code a regexp to convert a block of text: * List item * Another list item to html: <ul> <li>List item</li> <li>Another list item</li> </ul> I know there are snippets or classes to do this (Markdown, Textile, etc) but I think it's overkill: I really just want some basic functionality. So far I'm trying wit...

IE8 won't submit form on ENTER in Windows 7 using https protocol, but will on Vista, XP, etc.

This is a weird one, and unfortunately I can't test it. At my company we are on Vista now and are not slated to get our Win 7 machines for another few weeks, but a client is complaining about it now. Basically, we have a form with username/password inputs and a submit button. Normal procedure is to enter your data and hit ENTER, bingo, ...

How can I get IE to recognize NBSP as NBSP instead of a space?

For the following JavaScript: function EscapedString(str) { var obj = document.createElement("span"); obj.innerHTML = str; return "&#" + (obj.textContent || obj.innerText).charCodeAt(0) + ";"; } alert(EscapedString("&nbsp;")); alert(EscapedString("&#160;")); alert(EscapedString("\xA0")); IE returns &#32; for each value instead ...

PHP DOMDocument - get html source of BODY

I'm using PHP's DOMDocument to parse and normalize user-submitted HTML using the loadHTML method to parse the content then getting a well-formed result via saveHTML: $dom= new DOMDocument(); $dom->loadHTML('<div><p>Hello World'); $well_formed= $dom->saveHTML(); echo($well_formed); This does a beautiful job of parsing the fragment and...