active questions tagged xhtml - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T05:51:31Zhttp://stackoverflow.com/feeds/tag/xhtmlhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/796087/make-a-div-into-a-link3Make a DIV Into a LinkEE2009-04-28T03:15:24Z2009-12-02T00:31:02Z
<p>I am looking for an XHTML 1.1 valid way to make a DIV into a clickable link.</p>
http://stackoverflow.com/questions/1821930/how-do-you-create-tabstops-in-xhtml1How do you create tabstops in XHTML?btelles2009-11-30T19:37:30Z2009-11-30T20:49:45Z
<p>Hi there,
I'd like to use an element like 'span' or any other regular ole' element to create a tabstop in an xhtml webpage (i.e. valid XML). The effect should be equivalent to 4 <code>"&nbsp;"</code> right next to each other (couldn't do that without putting a space between the ampersand and 'n'. Anyone know how to do this?</p>
<p><strong>Edit</strong>: My initial post did not show the <code>&nbsp;</code> What I want to do is avoid using that method if possible.</p>
<p>Some more details...</p>
<p>Supposedly, the following CSS is invalid</p>
<pre><code>span {
display:inline;
width: 2em
}
</code></pre>
<p>because inline elements (from what I understand) do not have widths.</p>
<p>Also, this css:</p>
<pre><code>span {
display: block;
width: 2em;
float: (pick a direction)
}
</code></pre>
<p>would not work because it would cause the element to touch the edge of the block, causing irregular flow.</p>
<p>In the off chance that someone answers "Why on earth would you do that?" (hehe)...It's because I'm writing a legal document that requires said formatting. :-)</p>
<p>Thanks everyone!</p>
<p>Bernie</p>
http://stackoverflow.com/questions/1820898/how-to-submit-part-of-a-textarea-anyfield-using-js-or-dhtml-or-any-other-way0How to Submit part of a TextArea/anyfield using JS or DHTML or any other way?unknown (google)2009-11-30T16:36:17Z2009-11-30T16:43:21Z
<p>I want to submit part of a TextArea (User has entered Multiple Lines and selected one line either by Highlighting or by placing the cursor on the line). If user press the Submit Button then, I need to get the Line or word user has selected.</p>
<p>Just for my requirement Understanding See Below Example</p>
<p>Ex:- TOAD, SQL Server : where we can enter multiple Queries and When we press CTRL+Enter or F9 the selected Query only gets submitted to Database</p>
http://stackoverflow.com/questions/1766652/jquery-selecting-the-first-child-with-a-specific-attribute0jQuery Selecting the first child with a specific attributekingrichard20052009-11-19T21:18:59Z2009-11-30T13:25:38Z
<p>Hello, I have a form in HTML with multiple inputs of type submit:</p>
<pre><code><form id = "myForm1" action="doSomethingImportant/10" class="postLink" method="post">
<input type="hidden" id="antiCSRF" name="antiCSRF" value="12345"></input>
<input type="submit" value="clickThisLink"></input>
<input type="submit" value="Don'tclickThisLink"></input>
</form>
</code></pre>
<p>What I want to do is select only the first input with type submit while ignoring the others, the snippet of code I currently have is as follows, note it is within a for-each loop that goes through all forms on my page, hence (this) to avoid confusion:</p>
<pre><code>var name = $(this).find("input[type='submit']").val();
</code></pre>
<p>I'm thinking this already grabs the first input of type submit by default, I'm not sure if that assumption is correct or if there's a more formal way of going about it, thanks.</p>
http://stackoverflow.com/questions/1245095/ie8-and-quirks-mode0IE8 and quirks modeEmily2009-08-07T14:36:47Z2009-11-30T10:10:13Z
<p>Does IE8 run in quirks mode like IE6/7?</p>
<p>I have a webpage that has some truly bizarre code. The content is centered with padding and negative margins. </p>
<p>It works correctly in IE6/7 and other browsers but in IE8 the content area is half as wide and not centered (flag for quirks mode).</p>
<p>The source code has three blank lines before the DOCTYPE. I know that will throw IE6 into quirks mode. Will it also affect IE8?</p>
<p>I don't have access to the source so I cannot remove those lines to test it.</p>
http://stackoverflow.com/questions/1751398/document-conversion-software-xhtml-and-css-to-pdf2Document conversion software: XHTML and CSS to PDFMax2009-11-17T20:04:01Z2009-11-30T05:26:39Z
<p>I have a large database of XHTML that I wish to render as PDFs and/or RTF using CSS. Is there an off-the-shelf/cheap solution that could do this at scale? Large meaning terabytes. Need something that is robust and good at handling large volumes of files.</p>
http://stackoverflow.com/questions/1805757/css-positioning-puzzle0CSS Positioning PuzzleBurt2009-11-26T21:34:03Z2009-11-29T22:40:07Z
<p>The image below represents a website layout I am trying to create. The blue section (bottom right) represents an image should be behind the three neighboring elements and overflow them slightly.</p>
<p>I do not know the best way to do this, at the minute I have a wrapper div round the colored sections and put a background image in there but I am not sure if this is the best approach as the wrapper div needs to have a fixed size.</p>
<p>Any suggestions would be very welcome. </p>
<p><img src="http://www.gumpshen.com/images/layout.png" /> </p>
http://stackoverflow.com/questions/1753858/are-javascript-disabled-users-which-are-very-low-in-the-world-is-a-topic-of-acc1Are javascript disabled users (which are very low in the world) is a topic of accessibility?Jitendra2009-11-18T05:34:39Z2009-11-29T20:41:18Z
<p>Are javascript disabled users (which are very low in the world) is a topic of accessibility? To make accessible everythig without javascript is more time consuming then to make site compatible for IE6. My question is actually how many people keeps javascript diabled in browser , and if it's very low percentage in the work then why we need to make site compatible without javascript. What WCAG 2.0 says about this? </p>
<p>I want to know other opinions on this issue.</p>
<p><a href="http://www.webstandards.org/2008/12/11/wcag-20-is-a-w3c-rec/" rel="nofollow">See what is written in this article</a> </p>
<blockquote>
<p>With WCAG 2, “Don’t use x” is no
longer valid. (Was it ever?) It is now
up to you, the developer, to work on
the direct accessibility of your
content, no matter what technology you
choose. I believe we’re about to
experience a new wave of accessible
design techniques, as a result.</p>
</blockquote>
http://stackoverflow.com/questions/1814830/what-is-the-difference-between-browser-rendering-engine-and-user-agent3What is the difference between Browser , Rendering engine and user agent?Jitendra2009-11-29T06:32:27Z2009-11-29T14:57:08Z
<p>To make cross platform and cross browser website application what is the role of user agent switcher?</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/59" rel="nofollow">https://addons.mozilla.org/en-US/firefox/addon/59</a></p>
<p><img src="https://addons.mozilla.org/en-US/firefox/images/p/19212/1245518908" alt="alt text"></p>
<p>Is user agent different thing then rendering engine?</p>
<p>and if some browser use same rendering engine then do we need to check on every browser or one is enough?</p>
http://stackoverflow.com/questions/1801752/where-we-should-put-skip-to-content-links2Where we should put "skip to content" links?Jitendra2009-11-26T05:48:49Z2009-11-28T21:57:15Z
<p>See place 1,2 and 3.</p>
<pre><code><body>
<Place 1>
<div id="container">
<Place 2>
<div id="header">
<Place 3>
<div id="logo">
</div>
</div>
</div>
</body>
</code></pre>
http://stackoverflow.com/questions/317854/easiest-way-or-best-tools-to-convert-word-text-to-clean-xhtml2Easiest way or Best tools to convert word text to clean (X)HTMLSalt Packets2008-11-25T16:03:42Z2009-11-28T21:19:39Z
<p>This might have been asked in another way. I am not doing it on the fly however. Once in a while we get pieces of content in word files that have em dashes, bold, italic text and block quotes. Is there a good tool to convert this into a clean html code. </p>
<p>Otherwise what other approaches people take. </p>
http://stackoverflow.com/questions/1802240/attribute-runat-is-not-a-valid-attribute-did-you-mean-content-or-target-h0Attribute "runat" is not a valid attribute. Did you mean "content" or "target"? How to solve this asp.net validation errorJitendra2009-11-26T08:17:51Z2009-11-28T06:05:38Z
<p>see here this error - <a href="http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.sitecore.net%2F" rel="nofollow">http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.sitecore.net%2F</a></p>
http://stackoverflow.com/questions/1805718/how-can-i-get-the-wordpress-languageattributes-function-to-return-valid-xhtml-10How can I get the WordPress language_attributes function to return valid XHTML 1.1?dommer2009-11-26T21:24:20Z2009-11-27T18:26:51Z
<p>I have a WordPress template that contains the following element:</p>
<pre><code><html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes('xhtml'); ?>>
</code></pre>
<p>This returns:</p>
<pre><code><html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US" xml:lang="en-US">
</code></pre>
<p>Unfortunately the "lang" attribute is invalid XHTML 1.1 - and the client would like this level of validation.</p>
<p>WordPress' general-template.php file contains the following code:</p>
<pre><code>if ( get_option('html_type') == 'text/html' || $doctype == 'html' )
$attributes[] = "lang=\"$lang\"";
</code></pre>
<p>$doctype is the parameter passed to it (in this case 'xhtml'). Should get_option be returning a value other than 'text/html'? If so, what should I be setting in WordPress to achieve this - if anything?</p>
<p>I've also tried using preg_replace to take out the "lang" attribute, but this didn't seem to be able to match the text. If I enter the text manually, it matches! Possibly an encoding issue with the string being returned by language_attributes? </p>
http://stackoverflow.com/questions/1717722/website-surfacing-blank-pages-in-ie60Website surfacing blank pages in IE6bdls2009-11-11T20:07:13Z2009-11-27T10:36:47Z
<p><em>- Since discovering more about my problem I have modified my question</em></p>
<p>A single user is complaining that (on XP and using IE6) they're not able to follow any links around my site. The behaviour they're seeing is clicking a link shows a blank page, but doesn't change the url in the address bar of the browser. Pressing refresh at this point then displays the page correctly with the correct URL in the address bar.</p>
<p>All anchors are correct, and as well as testing the site in all <em>our favourite</em> browsers I have also tested the site myself on XP using IE6 and have <strong>no problems</strong>.</p>
<p>Has anyone any thoughts on what could be causing this? Perhaps it could be the fact they're within a company network for example? -- I don't see how that could cause a problem, but I am so far coming up empty.</p>
<p>I'm using XHTML & PHP. Headers are being received correctly. I've also ensured full PHP error reporting is on and there are no errors.</p>
http://stackoverflow.com/questions/1807676/validating-xhtml-elements-with-xml-children0Validating XHTML elements with XML childrenMatty F2009-11-27T09:34:14Z2009-11-27T09:48:27Z
<p>G'day guys,<br>
I've tried reading the XML Modularization recommendation which promises to allow custom XHTML extensions but can't make heads nor tails from it. I need an XML document containing a mix of XHTML and user-defined XML elements to validate and having trouble doing so. Unfortunately I'm using an XSD and not a DTD, a la XSL which validates XSL elements as children of XHTML elements. Here's a short sample of what I'd like to validate:</p>
<pre><code><html><head><title><my:element name="titledata" /></title></head><body /></html>
</code></pre>
<p>Cheers!</p>
http://stackoverflow.com/questions/1795019/form-entry-gets-inserted-into-the-html-code0Form entry gets inserted into the HTML code?RPK2009-11-25T06:25:31Z2009-11-27T07:56:55Z
<p>I am using following code to display HTML Form on my web page. This code also uses a third-party .js file that is linked to it. Everything is working fine except that when the first record is inserted and after saving the record the control comes back to this form, the company name entered in the first entry is seen in the code itself. I mean to say that the entry company name is somehow gets inserted into the HTML code.</p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script type="text/javascript" src="widgEditor.js"></script>
<title>Job Listing Entry</title>
</head>
<body>
<Form id="frmNewEntry" method="post" action="insert_listing.php">
<table id="tblEntry" cols="2" border="0">
<tr><td>Date:</td><td><input id="LDate" name="LDate" type="text" size="50">[yyyy/mm/dd]</td></tr>
<tr><td>Places:</td><td><input id="Places" name="Places" type="text" size="50" onblur="this.value=MakeInitialCapital(this.value);"></td></tr>
<tr><td>Company:</td><td><input id="Company" name="Company" type="text" size="50" onblur="this.value=MakeInitialCapital(this.value);"></td></tr>
<tr><td>Designation:</td><td><input id="Designation" name="Designation" type="text" size="50" onblur="this.value=MakeInitialCapital(this.value);"></td></tr>
<tr><td>Project Details:</td><td><textarea class="widgEditor" id="ProjectDetails" name="ProjectDetails" cols="100" rows="10""></textarea> <br></td></tr>
<tr><td>Desired Candidate:</td><td><textarea class="widgEditor" id="DesiredCandidate" name="DesiredCandidate" rows="5" cols="100" onblur="this.value=MakeInitialCapital(this.value);"></textarea> <br></td></tr>
<tr><td>HR Name:</td><td><input id="HRName" name="HRName" type="text" size="50" onblur="this.value=MakeInitialCapital(this.value);"> <br></td></tr>
<tr><td>HR Contact:</td><td><input id="HRContact" name="HRContact" type="text" size="50" onblur="this.value=MakeInitialCapital(this.value);"> <br></td></tr>
<tr><td>Email:</td><td><input id="Email" name="Email" type="text" size="50"> <br></td></tr>
<tr></tr>
<tr><td><input id="Submit" name="Submit" value="Submit" type="submit"> <br></td></tr>
</table>
</Form>
</body>
</html>
<script language="JavaScript" type="text/javascript">
function MakeInitialCapital(str)
{
return str.toLowerCase().replace(/\b[a-z]/g, cnvrt);
function cnvrt() {
return arguments[0].toUpperCase();
}
}
</script>
</code></pre>
<p>For example, if I had typed the company name, say, Example Solutions, then the first line of the above code gets modified as:</p>
<pre><code>Example Solutions <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
</code></pre>
http://stackoverflow.com/questions/1802871/how-to-extract-content-of-web-pages-easily-which-are-embeded-in-html-pages-inside0How to extract content of web pages easily which are embeded in html pages inside <body>?Jitendra2009-11-26T10:30:44Z2009-11-27T07:36:56Z
<p>How to extract content of web pages easily which are embeded in html pages inside only (like img, pdf, flv, doc, rtf, wmc etc) not css and css backgrounds images,javascript.</p>
<p>I'm migrating content old site to new site. re-uploading all images, linked pdf, flv etc. </p>
http://stackoverflow.com/questions/1806736/how-to-make-the-first-column-of-a-table-invisible0How to make the first column of a table invisible?RPK2009-11-27T04:34:07Z2009-11-27T04:37:26Z
<p>Below is the CSS code of my table display. How can I modify this code to make the first column invisible?</p>
<pre><code>table.tbl { width:100%; border: 2px solid #c3daf9; font-size: 0.9em; clear: both; }
td.tbl-header { background: url(/images/head_bg.gif); text-align: center; padding: 3px; font-weight: bold; border-bottom: 2px solid #c3daf9; }
tr.tbl-footer {}
table.tbl-footer { font-size: 1em;}
tr.tbl-row {height: 40px}
tr.tbl-row:hover { background: #EBFFFF; } /* Old color: #E9E9E9 */
tr.tbl-row-even { background: #F5F9FF; }
tr.tbl-row-odd { background: #FFFFFF; }
tr.tbl-row-highlight:hover { background: lightblue; cursor: pointer; }
td.tbl-nav { background: url(/images/head_bg.gif); height: 20px; border-top: 2px solid #c3daf9; color: #4D4D4D; }
td.tbl-pages { text-align: center; }
td.tbl-row-num { text-align: right; }
td.tbl-cell {}
td.tbl-controls { text-align: center; }
td.tbl-found {}
td.tbl-checkall {}
td.tbl-page { text-align: right; }
td.tbl-noresults { font-weight: bold; color: #9F0000; height: 45px; text-align: center; }
span.tbl-reset { margin: 5px 5px; }
img.tbl-reset-image { margin-right: 5px; border: 0; }
span.tbl-create { margin: 5px 0; }
img.tbl-create-image { margin-right: 5px; border: 0; }
div.tbl-filter-box {}
img.tbl-arrows { border: 0; }
img.tbl-order-image { margin: 0 2px; border: 0; }
img.tbl-filter-image { border: 0; }
img.tbl-control-image { border: 0; }
span.page-selected { color: black; font-weight: bold; }
input.tbl-checkbox {}
</code></pre>
http://stackoverflow.com/questions/1805022/how-to-handle-special-entities-in-email-addresses0How to handle Special Entities in email addresses?Jitendra2009-11-26T18:09:05Z2009-11-26T18:43:52Z
<p>if you look at the email address</p>
<p>b&byouaddress@email.com (this email address is a example)</p>
<p>The & is not a valid character for the email address & thus you get "b" in mail that is generated..I have tried using almost all the encodings available on net...</p>
<p>But my CMS decodes them again into html & the result is again same as before... So no use of it..</p>
<p>I have tried using almost all the encodings available on net... + I also have tried javascript encoded mail id but even that didn’t work.. :( </p>
http://stackoverflow.com/questions/1804338/list-doesnt-display-inline-ie0list doesnt display inline IE?Elliott2009-11-26T15:31:25Z2009-11-26T15:46:26Z
<p>The code below works fine in firefox, but the list doesnt display in-line with IE.</p>
<pre><code><div id="nav">
<ul>
<li><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">5</a></li>
</ul>
</div>
</code></pre>
<p>CSS:</p>
<pre><code>#nav
{
width: 800px;
padding: 0px;
margin: 0 auto;
list-style-type: none;
}
#nav ul li a
{
font-size: 18px;
text-decoration: none;
text-align: center;
color: #ffffff;
background-color: #003366;
padding: 20px;
list-style: none;
float: left;
list-style-type: none;
line-height: 5px;
display: inline;
margin-left: 5px;
}
#nav ul li a:hover
{
background-color: #ccc;
}
</code></pre>
<p>Also in IE the bullet points still display?</p>
http://stackoverflow.com/questions/693936/good-editors-for-web-development-on-os-x7Good Editors for Web Development on OS X?JimDaniel2009-03-29T01:26:59Z2009-11-26T13:46:38Z
<p>I'm getting started with web development on OS X need some good development tools, text editors...etc. I have XCode already but it doesn't seem geared towards editing the web technologies I will be using: xhtml, javascript, css, and php. </p>
<p>So I am looking for some ideas. I know about TextMate, but am trying to avoid spending any $$$.</p>
<p>Thanks!</p>
<p>UPDATE: I downloaded them all and so far I like TextMate the best, so I'll be using it for a month at least. Aquamacs and TextWrangler are also good. The web IDEs like Coda and Espresso are pretty interesting. I might give them a chance in the future, but for now I want to keep it lightweight. Thanks all.</p>
http://stackoverflow.com/questions/1795235/any-library-to-convert-richtext-to-html0Any library to convert richtext to html.RPK2009-11-25T07:30:52Z2009-11-26T11:40:55Z
<p>At present I am using <a href="http://code.google.com/p/widgeditor/" rel="nofollow">widgEditor</a></p>
<p>It is a good library in JavaScript but has some minor issues. Is there any other library that can convert a Rich Text into an HTML equivalent?</p>
http://stackoverflow.com/questions/1795242/how-to-figure-out-if-an-html-block-does-not-contain-any-text-nodes0How To Figure Out if an HTML Block Does Not Contain Any Text NodesRobert C. Barth2009-11-25T07:32:16Z2009-11-26T06:36:59Z
<p>How do you/is there a way to figure out if a block of HTML contains zero text nodes?</p>
<p>e.g. this:</p>
<pre><code><p><div><span></span></div></p>
</code></pre>
<p>contains zero text nodes whereas this:</p>
<pre><code><p>Stuff</p><div><span>other stuff</span></div>
</code></pre>
<p>contains two. </p>
<p>Additionally, you're guaranteed that the HTML is XHTML-compliant and the content is probably less than 4k in size. I'm using .net, so if some kind of server-side suggestion is made, please make it in C#. I suppose I could load the thing into an XmlDocument and traverse the DOM tree looking for non-empty XmlText nodes, but that would be a last resort as speed is of paramount concern.</p>
http://stackoverflow.com/questions/1771999/simple-xslt-question-how-can-i-add-the-closing-at-the-end-of-a-single-tag0Simple XSLT Question: How can I add the closing "/" at the end of a single tag?Dr Dork2009-11-20T17:21:00Z2009-11-26T03:26:15Z
<p>Hello, I'm teaching myself XSLT and am still trying to wrap my brain around the small details. I have a template in my XSL stylesheet that looks like this...</p>
<pre><code><td><img src="{normalize-space(image)}"/></td>
</code></pre>
<p>which produces XHTML that looks like this...</p>
<pre><code><td><img src="somefile.jpg"></td>
</code></pre>
<p>How do I change my XSL template to add a trailing "/" to the img tag so that the XHTML output looks like this...</p>
<pre><code><td><img src="somefile.jpg"/></td>
</code></pre>
<p>Also, why does the trailing slash in the template get omitted in the output?</p>
<p>Thanks in advance for all your help!</p>
http://stackoverflow.com/questions/1777069/web-design-examples-by-element-type0web design examples by element typeDon2009-11-21T22:58:34Z2009-11-25T20:31:21Z
<p>Hi,</p>
<p>I'm trying to improve the style of a website. I'm looking for some examples of beautifully styled HTML elements (tables, lists, headings, etc.) that I can draw on for inspiration, or just copy and paste verbatim (if that's permitted).</p>
<p>Some explanation of how the styling was achieved would be nice, but is not absolutely necessary, as I can always use Firebug to reverse engineer the design. Ideally the designs should:</p>
<ul>
<li>Be compatible with all modern browsers (which excludes IE6 IMO)</li>
<li>Use little or no JavaScript</li>
<li>Be valid XHTML transitional/strict</li>
</ul>
<p><strong>EDIT:</strong> Ideally, the site(s) should provide an easy way to view <strong>a list of styles for a particular element type</strong> (ordered list, table, heading, etc.)</p>
<p>Thanks,
Don</p>
http://stackoverflow.com/questions/1798706/how-to-execute-a-hyperlink-automatically-through-php-4How to execute a hyperlink automatically through phpRajasekar2009-11-25T17:45:00Z2009-11-25T18:09:24Z
<p>I had a hyperlink like this</p>
<p><a href="http://www.mywebsite.com/sendmessage.php?uid=siva&pwd=mani&phone=newairtel&msg=dg" rel="nofollow">http://www.mywebsite.com/sendmessage.php?uid=siva&pwd=mani&phone=newairtel&msg=dg</a></p>
<p>Normally in HTML we put href to that link and the link will open after the user click that link.</p>
<p>But I want that link to be executed automatically without user interaction using PHP. How can i get it.</p>
<p>Plz help. Any Help will be highly appreciated</p>
<p><strong>I DONT WANT THAT PAGE SHOULD BE REDIRECTED. JUST I NEED THE LINK TO EXECUTE</strong></p>
http://stackoverflow.com/questions/1781372/how-to-style-content-of-pages-without-adding-css-class-to-element1How to style content of pages without adding css class to element?Jitendra2009-11-23T06:09:48Z2009-11-25T16:27:53Z
<p>I use CMS for client and client doesn't know CSS he use WYSIWYG editor to put content in pages. Client adds Paragraphs, images, images in paragraph (left or right floated), ordered and unordered list, Tables. Problems comes when he want to add images in paragraph (left or right floated). and without adding css class it's not possible. And i don't want to add <code><div></code> in content because WYSIWYG editor can't manage div and client works in WYSIWYG mode.</p>
<p>How to style content of pages without using css class?</p>
http://stackoverflow.com/questions/915338/xpath-find-link-url-by-link-text2XPath: find link URL by link textflybywire2009-05-27T12:05:42Z2009-11-25T13:51:35Z
<p>I have a well formed <a href="http://en.wikipedia.org/wiki/XHTML" rel="nofollow">XHTML</a> page.
I want to find the destination URL of a link when I have the text that is linked.</p>
<p>Example</p>
<pre><code><a href="http://stackoverflow.com">programming questions site</a>
<a href="http://cnn.com">news</a>
</code></pre>
<p>I want an <a href="http://en.wikipedia.org/wiki/XPath" rel="nofollow">XPath</a> expression such that if given <code>programming questions site</code> it will give <code>http://stackoverflow.com</code> and if I give it <code>news</code> it will give <code>http://cnn.com</code>.</p>
http://stackoverflow.com/questions/912906/banding-with-xsl1Banding with xslBillZ2009-05-26T21:37:52Z2009-11-25T08:17:35Z
<p>I am beginning to think that the problem isn't with the banding code. Somehow count is not coming out correct. Could it be in either the xml, I have approx. 150 of the case-study nodes? Or can it be in the order in which I am doing the for-each and the if?</p>
<pre><code><!-- XML -->
<case-studies>
<case-study>
<name>Company A</name>
<solutionType>Mobility</solutionType>
<solutionType>Convergence</solutionType>
<solution category="Business services">Product</solution>
<solution category="Business services">Industry</solution>
<solution category="#">A-Z</solution>
<product>Product 1</product>
</case-study>
</case-studies>
</code></pre>
<p>I am trying to create a table that alternates gray rows within the for-each. The code below returns an eratic effect.</p>
<p>Thanks
</p>
<pre><code> <xsl:sort select="../name" />
<xsl:if test="@category[. = $solName]">
<tr>
<xsl:if test="(position() mod 2 = 1)">
<xsl:attribute name="bgcolor">#e7e7e7</xsl:attribute>
</xsl:if>
<td class="cell1">
<img src="/images/icons/infoWhite.gif" style="margin:3px 3px 0 0px;" id="{../name}" onmouseover="xstooltip_show('{../url}', '{../name}', 0, 10);" onmouseout="xstooltip_hide('{../url}');" />
<div id="{../url}" class="xstooltip" style="margin:10px 0 0 10px;">
<div class="floatLeft"><strong>Product(s):</strong></div>
<div class="margLeft10 floatLeft">
<xsl:for-each select="../product/prodName">
<div class="clearRight"><xsl:value-of select="."/></div>
</xsl:for-each>
</div>
</div>
</td>
<td class="cell2" style="padding-top:2px;">» <a href="{../url}"><xsl:value-of select="../name"/></a></td>
<td class="cell3">
<xsl:for-each select="../solutionType">
<div class="clearRight"><xsl:value-of select="."/></div>
</xsl:for-each>
</td>
</tr>
</xsl:if>
</xsl:for-each>
</code></pre>
http://stackoverflow.com/questions/1792626/ie-6-strange-problem-background-bullet-only-shown-on-mouse-while-hover-is-not-app0IE 6 strange problem background bullet only shown on mouse while hover is not applied?Jitendra2009-11-24T20:11:46Z2009-11-25T02:49:31Z
<p>in IE6 background image only shows if we mouse over on the link otherwise not</p>
<pre><code>#tbaContentContainer P A:link { font-size:1em; background: url(~/media/images/e/experian/images/content/arrow.ashx) no-repeat -2px 5px ; color: red; text-indent: 15px;position:relative}
</code></pre>
<p>Attached here is a screenshot for more information.</p>
<p><img src="http://easycaptures.com/fs/uploaded/428/9459264109.jpg" alt="alt text"></p>
<p>Can someone please look into this and advise?</p>