xhtml

Top margin float when resizing browser

Okay so I have have a basic HTML page with a number of images: img { display: inline; float: left; height: 150px; } All works fine unless the browser width is resized to near the edge of the furthest right image, at which point it the last image jumps down a few pixels, see below images: http://i.imgur.com/1TR38.gif Firefox 3, tried ...

How would I convert a HTML5 / CSS3 document to PDF?

We're currently generating reports for our web application using html5 / css3, and they look good on screen, but obviously when the user hits print who knows what is going to come out of the printer. So, what I would like to know is what is the best way to convert these reports to PDF for download / printing while maintaining the same vi...

XML in markup, any ideas why?

I am doing some research on a motorola site and came across a ton of weird markup and wanted to get any ideas on why this is used or why it is a good idea? Using this page as the example http://bit.ly/bRWpQX You can view source and see tons of tags like <title xml:lang="en" lang="en" <html xmlns="http://www.w3.org/1999/xhtml" lang=...

Is this html declaration repetitive

I have a doctype declaration as seen in the first 2 lines. In the third line, the html tag also has some xmlns declaration and xml:lang and lang. Is any of these xmlns, xml:lang, or lang repetitive? Do they duplicate anything from the doctype. I'd like to keep the doctype and remove all the declarations on the third line if they're rep...

Extend XHTML with namespaces

Hi, I've seen this somewhere, but I don't remeber the page. I'd like to extend the HTML tags, so then I can add my own attributes to the HTML elements, I saw a example where the developer added a new xmlns to the page definition, so he could add new things and still be a valid XHTML. What is the name of this technique and where could ...

Large 5000 cell Grid using css, javascript and xhtml

Hi I need to create a large grid with approx. 5,000 cells (10x10px). each cell needs its own ID, has to be clickable. cells that have been clicked need to be shaded differently. I also have to have a background image which needs to remain visible. This is wrecking my head as the HTML overhead creating 5000 div tags is simply too much. ...

How to add and remove a current state to a link when another is clicked using jQuery

Hi there, it my first time here - please go easy on me! I am struggling to find an answer to my question which is: How to add and remove a CSS .current class to a link when another link is clicked. For example, using this code: <a class="boldthislink">Bold me?</a> <a class="boldhim">bold him</a> <a class="unboldhim">unbold him</a> I...

Keep selectbox value after submit

On a website that I'm currently making I placed a selectbox were user's can sort a list of items displayed on the page. When they choose one, the page is being submitted and the selectbox value jumps back to the first default one. Now I want the selectbox to retain value after submitted. Im working in XSLT, so I can't use PHP. Is there...

Trouble creating elements with jquery.append() while looping through jquery.each()

This worked great when there was only one entry in the database, but add another and now I've got problems. Since I'm appending based on class names I'm getting every element appending to a single class. I don't know what to do in order to create two "blogHeadlines" with the appropriate content in each. jquery: $(blogEntries).e...

How to remove Message Ui:include not found on java build path in eclipse, While developing .xhtml file using richfaces and facelets?

Hi, I am getting error message like... The tag handler class for "ui:include" (null) was not found on the Java Build Path when i placed or in my .xhtml file. What is the reason behind this.. I am using: jsf 1.2 RichFaces 3.3 ...

How to add "pause" button in this jquery slider?

How to add pause button in this jQuery image slider? I want to add Pause on click button at last after 4 ? Like this: see example pic http://shup.com/Shup/431390/110929231254-My-Desktop.png http://www.sohtanaka.com/web-design/examples/image-slider/ I want add another link button to pause the slider on current slide. and it should no...

wide table inside div - div not stretching

Probably a dumb question with a simple answer but I can't seem to find a solution I want a parent div to stretch when the child table width goes beyond page width example: http://www.internetmotors.lv/public/table_div_stretch.html what would be the best css solution for this ...

Redirect IE browsers using .htaccess (away from an xhtml)

Hello, as the title says, I want to use an xhtml as my homepage and I want to redirect visitors using Internet Explorer browsers to a different page (a .htm with less content that says "You're using IE, tough tittie."). Since IE automatically downloads app/xhtml files, I can't do this using javascript and whatnot, so I think the only op...

Why is this validation method now rejecting all our html

The following snippet has worked for validating user entered html snippets for ages, now in past day it started rejecting everything. public override bool IsValid(object value) { var isValid = true; try { var doc = new XmlDocument(); doc.LoadXml(string.Format(@" <!DOCTYPE html [<!ENTITY % xhtml-l...

Get N characters introduction text with XSLT 1.0 from XHTML

How I can get first n characters with XSLT 1.0 from XHTML? I'm trying to create introduction text for news. Everything is UTF-8 HTML entity aware (&nbsp; &amp;), one entity = one character HTML tag aware (adds missing end tags) Input HTML is always valid If input text is over n chars add '...' to end output Input tags are restricted t...

Store a clicked link state using jQuery?

$('#nav a').click(function () { $('#nav a').removeClass('current'); $(this).addClass('current'); return false; }); My HTML is: <ul id="nav"> <li><a class="current hoc" href="#spread1-anchor">Home</a> /</li> <li><a class="bgc" href="#spread2-anchor">Background</a> /</li> <li><a class="apc" href="#spread3-anchor">App...

DOMDocument::validate() problem

Hello I have a big problem with the PHP DOMDocument::validate() who seems to ask the DTD systematically. It is a big problem when I whant to validate, for example, an XHTML document as explained here. As w3.org seems to reject all request from a PHP server, it's impossible to validate my document with this method... Is there any solu...

CSS Noob Could really use some Skilled help with layout and positioning

Possible Duplicate: Stacking Divs with CSS Im kinda new to CSS have been using tables for my html for years, Im trying to figure out how I can nest divs or stack them inside the content section of a 3 column layout. with tables I'd just do a new TR but if I float another div into the content line line it will appear parallel o...

How can I vertically align a <table> in the middle of a fixed height <div>?

Hi my dear friends. Why does the code below not cause the <table> to be vertically-aligned in the middle of the <div>? <div style="width: 850px; height: 470px;vertical-align: middle;" align="center"> <table style="padding-left: 20px; width: 700px; border: 10px groove #0033CC; background-color: #F9F9F9;"> <tr> ...

Override the form 'Reset' behavior when data is refreshed via ajax

I am relying on the "Reset" behavior of a form to cancel the edits, the problem i am facing is that once post the data is updated via ajax, the reset still reverts back to the data that was loaded with the page origionally. So basically what I need to be able to do is "Reset" the "Reset" function. Make sense? ...