HTML (HyperText Markup Language) is the predominant markup language used for creating web pages.

learn more… | top users | synonyms

4
votes
1answer
322 views

Should MVVM ViewModel inject an HTML template for default view?

I'm working on web application design that includes Knockout.js and have an overall MVVM question: Does it make sense for the ViewModel to automatically inject a default HTML template (pulled from ...
0
votes
0answers
31 views

Ruby Capybara HTML DOM Issue

I am trying to get the links from Google adverts that appear in a webpage in programmatic manner. I have been testing Ruby and Capybara but I have an issue where the DOM as stated by Capybara is not ...
0
votes
0answers
108 views

Using HTML5 Canvas in Java Applet

I have an old-platform Java Applet-based emulator which works very well. There is some analogs written in JS+Canvas, but it looks very bad (very dirty realtime, many functions doesn't work, many ...
0
votes
0answers
115 views

What iframe event handlers can catch/handle error response statuses.

I require to download a url into an iframe and handle the cases where the server returns an error response status. Please could you inform me how to catch/handle the error status returned in the ...
0
votes
0answers
153 views

Benefit of using Data URI to embed images within HTML document and its cross-browser compatibility

I want to embed an image using Data URI within HTML document so that we don't need image as a separate attachment, we get just one HTML file that contains the actual image. What are its advantages and ...