Search Results

0
votes

Regular expression for parsing links from a webpage?

This will capture the URLs from all a tags as long as the author of the HTML used quotes: <a[^>]+href="([^"]+)"[^>]*> I made an example …
1
vote

Best way to export html to Word without having MS Word installed?

While it is possible to make a ".doc" Microsoft Word file, it would probably be easier and more portable to make a ".rtf" file. …
1
vote

Show unordered list inline, but keep the bullets

The browser displays the bullets because the style property "display" is initially set to "list-item". Changing the display property to "inline" cancels all the special styles that list items get. …
3
votes

How do you swap DIVs on mouseover? (jquery?)

Here's my light-markup jQuery version: <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> function switchTo(i) { $('#switch …
1
vote

Validate (X)HTML in Python

I think that HTML tidy will do what you want. There is a Python binding for it. …
3
votes

Why do I cannot jQuery my page under Internet Explorer

What version(s) of IE is it failing under? Is it failing for a specific complex selector? I think we need an example. Edit: Does the problem go away if you upgrade to 1.2.6? 1.2.6 is primar …
3
votes

If you were programming a calendar in HTML would you use Table tags or Div tags?

I would say that a calendar is a table, therefore making the table the proper markup for its representation. Edit: Definition 11 for "t …
1
vote

HTML: center a block of content when you don’t know in advance its width.

I think that your example would work just as well if you used a <div> instead of a <table>. The only difference is that the text in the <table> is also centered. If you want that …
1
vote

HTML drag and drop sortable tables

I recommend Sortables in jQuery. You can use it on list items or pretty much anythin …
3
votes

HTML: What’s the effect of adding ‘return false’ to an onclick event ?

Retuning false from a JavaScript event usually cancels the "default" behavior - in the case of links, it tells the browser to not follow the link. …
0
votes

Rendered pIxel width data for each character in a browser’s font

This is essentially impossible to do on the server side. In addition to the problem of people having different fonts installed, you also have kerning (the letter "f" will take up a different amount …
17
votes

Printing Labels from ASP.Net Page

Forget HTML and make a PDF. HTML printing is extremely variable - not just across browsers but across different versions of the same browser. PDF is a lot easier. Even if you get it exactly …
1
vote

How do I show an embedded excel file in a WebPage?

I think your best bet is going to be extracting the data out of the Excel file and displaying it in a regular HTML table. Excel isn't exactly safe to invoke from a web page and not everyone has it …
3
votes

Disable anchors in Chrome/WebKit/Safari

I assume that you have an onclick event handler bound to these anchor elements. Just have your event handler check the "disabled" attribute and cancel the event if it is set. Your event handler wou …
0
votes

Floating LI’s in IE 6

IE 6 has some bugs with whitespace between <li> elements. Try putting all your list items on the same line with no space between them. Edit: On further inspection, I don' …