Search Results

1
vote

Mechanical Turk: Using HTML in the API

You could post a job on Mechanical Turk to have a person take your template and insert your data into it for each HIT you want to create. (yes, this is at least half sarcasm) …
0
votes

Generate HTML-Map from image

Open the map in Inkscape. If it is a bitmap, use Path -> Trace Bitmap to trace the edges. Clean up the vector data to include only the paths that you want to appear in your imagemap. Save the do …
4
votes

tutorial for HTML canvas’s arc function

arc(x, y, radius, startAngle, endAngle, anticlockwise) The first three parameters, x and y and radius, describe a circle, the arc drawn will be part of that circle. startA …
0
votes

Finding a node (or close to it) using XPath in non well-formed HTML

XPath does not work directly with HTML. The interaction of XPath with your HTML is dictacted by whatever software/library is parsing the HTML into a rendering tree. This may help direct your sear …
11
votes

How to keep my non-breaking spaces with HTML Tidy (PHP)?

Apply this style, then you do not need to put content in the "empty" cells: td { empty-cells: show; } …
0
votes

What is the best way to implement ‘Excel like column sizing’ for an HTML table?

Google Docs spreadsheet application does what you are looking for. That may be worth looking at, but their code is very dense. …
1
vote

What are standards for characters allowed in text fields

Passwords should, as an absolute minimum, allow every character available from the keyboard in your target locale(s). …
0
votes

In CSS, how do I get a left-side fixed-width column with a right-side table that uses the rest of the width?

There is almost certainly an answer that involves applying display:table and display:table-cell to the elements in question. Which is to say... no. …
1
vote

Any way to prevent “deselection” of highlighted text?

This behavior, while mostly universal in modern browsers, is browser/implementation specific and almost completely unrelated to CSS or Javascript. In particular, note that Firefox maintains separa …
1
vote

Setting the height of a SELECT in IE

Use a UI library, like jquery or …
2
votes

Image alt attribute best practices

From w3.org: While alternate text may be very helpful, it must be handled with care. Authors should ob …
1
vote

Last few html tags not rendering?

If 'View Source' does not show you the tags then it is not a rendering problem, but a server or network problem, as the content is not being delivered to the browser. …