active questions tagged accessibility - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T09:37:46Z http://stackoverflow.com/feeds/tag/accessibility http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1923681/iphone-accessibility-using-red-on-black-for-images 2 iPhone Accessibility using "Red on Black" for images BlindingDawn 2009-12-17T18:32:07Z 2009-12-18T04:10:16Z <p>Is there a way to convert an image on the fly to "Red on Black" for accessibility? I have pictures that I want to stream to the iphone. Viewing them at night, Red on Black is better for viewing.</p> http://stackoverflow.com/questions/1905006/accessibility-of-the-yui-tree-control-how-to-tab-to-the-tree-on-firefox 0 Accessibility of the YUI Tree control: how to tab to the tree on Firefox? Alessandro Vernet 2009-12-15T03:36:57Z 2009-12-18T03:03:33Z <p>Consider this example showing the YUI tree in action:</p> <p><a href="http://developer.yahoo.com/yui/examples/treeview/tv%5Fedit.html" rel="nofollow">http://developer.yahoo.com/yui/examples/treeview/tv%5Fedit.html</a></p> <ol> <li>Select the title in orange ("TreeView Control: Inline Editing of TreeView Node Labels").</li> <li>Hit tab a first time: the link "View example in new window" is selected.</li> <li><p>Hit tab a second time: this selects an anchor inside the tree.</p> <blockquote> <p><img src="http://img.skitch.com/20091218-61eqs6gcngp8ay56s1pba3jhb.png" alt="Label 0 not highlighted"></p> </blockquote></li> <li><p>From there you can use the up/down keys to navigate through the tree. The current item is always highlighted with a background color.</p> <blockquote> <p><img src="http://img.skitch.com/20091218-es5xh4g4k41d8s133hay65ufrr.png" alt="Label 1 is highlighted"></p> </blockquote></li> </ol> <p>The issue is that the background of the current item is not highlighted on step 3 above (but it is when navigating through the tree on step 4). Is this a bug of the YUI tree, or is there a way to programmatically highlight the current item when the tree receives the focus?</p> http://stackoverflow.com/questions/1915845/performance-accessibility-issues-in-this-jquery-html-code 0 Performance/Accessibility issues in this jQuery/HTML code? ryanulit 2009-12-16T16:27:47Z 2009-12-16T17:02:02Z <p>The following code works just fine in IE, FF, Chrome and Safari, but I am wondering how efficient it actually is when scaled to a lot of users and whether it is accessible to screen readers/special needs users/etc? Specifically, is there a better way to write the jQuery so it uses less $(this) references, and does that even cause any performance hit to use? Also, would setting the display to none on the labels limit the accessibility to people using screen readers? I add in the title attribute when the page is loaded for this purpose, but does that even help/is it a good idea? Also, I am aware that if javascript is disabled all this would be useless, but just wondering here. </p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;&lt;/title&gt; &lt;style type="text/css"&gt; fieldset { border: none; padding: 10px; width: 600px; margin-top: 5px; } label { display: none; } input { width: 150px; margin: 5px; float: left; display: block; } br { clear: both; } &lt;/style&gt; &lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; $(document).ready(function() { GetInputLabels(); $("input").focus(function() { if ($(this).val() == $(this).prev("label").text()) { $(this).val('').css("color", "#000"); } }); $("input").blur(function() { if ($(this).val() == '') { $(this).val($(this).prev("label").text()).css("color", "#bbb"); } }); function GetInputLabels() { $("input").each(function() { var label = $(this).prev("label").text(); $(this).val(label).css("color", "#bbb").attr("title", label); }); } }); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;form&gt; &lt;fieldset&gt; &lt;label for="fname"&gt;First Name&lt;/label&gt; &lt;input id="fname" type="text" /&gt; &lt;br/&gt; &lt;label for="lname"&gt;Last Name&lt;/label&gt; &lt;input id="lname" type="text" /&gt; &lt;br/&gt; &lt;label for="email"&gt;Email&lt;/label&gt; &lt;input id="email" type="text" /&gt; &lt;br/&gt; &lt;/fieldset&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1781394/how-to-make-keyboard-and-screen-reader-accessible-drop-down-menu 0 How to make Keyboard and screen reader accessible drop down menu ? Jitendra 2009-11-23T06:15:00Z 2009-12-16T14:54:23Z <p>It would be better if there is way to make without using javascript</p> http://stackoverflow.com/questions/1848390/safari-ignoring-tabindex 0 Safari ignoring tabindex Dhana 2009-12-04T17:14:45Z 2009-12-16T12:53:40Z <p>I have 2 buttons next to a textbox and another textbox after the 2 buttons. The tabindex for the first textbox is 1000, the first button is 1001 and the second button is 1002. The second textbox has a tabindex of 1003.</p> <p>When I press tab, the tabindex works fine in all browsers except for Safari, where it immediately moves from the first textbox to the second textbox although the tabindex has been set properly. Any ideas on how to prevent this issue?</p> http://stackoverflow.com/questions/1911513/legacy-iframes-what-is-a-full-fledged-replacement-for-them 3 Legacy iframes, what is a full fledged replacement for them? Tchalvak 2009-12-16T00:35:06Z 2009-12-16T02:21:06Z <h2>A site heavily using a main iframe</h2> <p>I inherited a legacy codebase/website, <a href="http://ninjawars.net" rel="nofollow">http://ninjawars.net</a> . The iframes were in place before I started coding on the site.</p> <p>I constantly hear about the problems of iframes (security, accessibility, layout issues), and I'm pretty certain that iframes aren't friendly for search engines (a big minus). My personal experience with iframes has mainly seen problems with their load times (heavy http requests, I guess?).</p> <h2>Searching for a replacement for iframes</h2> <p>Unfortunately, no-one who says "get rid of iframes" also gives an effective solution to my situation, generally assuming that a simple include of the content of the frame will make everything rainbows and unicorns (e.g. <a href="http://www.tutorialtastic.co.uk/tutorial/converting%5Ffrom%5Fiframes" rel="nofollow">Converting from iframes</a>). In my case, a static include solution does next to nothing for me.</p> <p>jQuery load() (dynamically loads content into a div, for example) is a better fit, but doing a conversion to that method will take time, and doesn't benefit accessibility for search engines, or non-javascript-browsing users. jQuery load() fixes the speed issue, but I'm not sure whether it fixes the accessibility issue. Even without javascript, the iframes still work (for manual clicks), though whether the extra support work of keeping the iframes working underneath the javascript is practical, I'm not sure.</p> <h2>Potential Alternatives?</h2> <ul> <li>jQuery &amp; load() </li> <li>Full rewrite of site to static pages with common header/footer/sidebar + some minor javascript polling.</li> <li>??? Something not yet considered by me ???</li> </ul> http://stackoverflow.com/questions/1903779/html5-video-and-degradation 1 HTML5 Video and degradation? ad rees 2009-12-14T21:56:45Z 2009-12-15T05:24:22Z <p>I've been playing around with the HTML5 video tag and I'm puzzled as to how best to degrade when you can't support a codec? </p> <p>For older browsers (or IE) that don't support the video tag at all this quite is straight forward:</p> <pre><code>&lt;video width="320" height="240"&gt; &lt;source src="vid.ogv" type='video/ogg'&gt; &lt;source src="vid.mp4" type='video/mp4'&gt; &lt;object&gt; &lt;!-- Embed Flash video here to play mp4 --&gt; &lt;object&gt; &lt;/video&gt; </code></pre> <p>They will fall through and will receive the Flash version (or other alternate such as an image!) </p> <p>How about when the browser does support the tag but not the codec - Like FireFox 3.5 for example - and I can't support OGG (possibly because I already have vast archives of H.264):</p> <pre><code>&lt;video width="320" height="240"&gt; &lt;source src="vid.mp4" type='video/mp4'&gt; &lt;object&gt; &lt;!-- Embed Flash video here to play mp4 --&gt; &lt;object&gt; &lt;/video&gt; </code></pre> <p>All I get in FireFox 3.5 is a grey box with an x in it. This isn't exactly a great user experience for FireFox users! I can only think of using JavaScript to check for FF3.5 and change the DOM!! is this really the bad old all over again! ...or is there some part of the spec I'm missing out on like a 'novideo' tag?</p> http://stackoverflow.com/questions/1904402/msaa-com-based 0 MSAA COM-based ? kamilimak 2009-12-15T00:03:18Z 2009-12-15T00:39:34Z <p>Hi there,</p> <p>I'm wondering if MSAA is COM-based, then one should be able to use CreateObject("Accessibility") to create an instance and call its methods. I had no success doing that. I have "OLEACC.DLL" in SYSTEM32 and it's registered with Windows. But the CreateObject fails.</p> <p>Any thoughts?</p> <p>I would like to use functions like AccessibleObjectFromPoint() to get the IAccessible object of the control at the given point.</p> <p>Has anybody had such an experience?</p> <p>Any input would be highly appreciated,</p> <p>Thanks,</p> <p>Kamil</p> http://stackoverflow.com/questions/1899772/new-window-icon-for-web-accessibility 0 New Window Icon (For web accessibility) Lee Englestone 2009-12-14T09:00:36Z 2009-12-14T09:27:24Z <p>Is there a default, standard, recommended or well known icon to denote that a link will open a new browser window?</p> <p>This is for web accessiblity reasons. Or is it basically a free for all? </p> <p>I realise that those that will get the most use out of them (using screen readers) will not even care what the image looks like, and be more interested in the alt text.</p> <p>Decided to go for this one : <img src="http://www.spe.org/spe-site/spe/images/icons/new%5Fwindow%5Ficon.gif" alt="new window icon">. </p> <p>Unless someonce can suggest a more widely adopted one?</p> <p>Cheers,</p> <p>-- Lee</p> http://stackoverflow.com/questions/1608840/can-gwt-be-made-accessible-for-users-with-javascript-disabled 1 Can GWT be made accessible for users with JavaScript disabled? Liam 2009-10-22T17:46:13Z 2009-12-14T05:06:23Z <p>My question concerns Google Web Toolkit (GWT). I'm about to begin development for a project that will reside on an Intranet where some users may have JavaScript disabled. After seeing what GWT has done for Google Wave I've been very interested in learning and applying it to this new project, but if it isn't accessible to those users then I don't think I'll be able to use it. I noticed that the <a href="http://code.google.com/webtoolkit/examples/" rel="nofollow">example applications on the GWT</a> website don't work at all with JavaScript disabled. So, can GWT be used in a way where content and functionality is still accessible to users with JavaScript disabled? If not, wouldn't this be a massive oversight by Google?</p> <p>If it's of any use, this project will be using Spring MVC 3.0 with Hibernate and JPA.</p> http://stackoverflow.com/questions/1879300/what-are-iframe-alternatives 1 What are iframe alternatives? Jitendra 2009-12-10T07:50:45Z 2009-12-13T08:53:13Z <ol> <li><p>Is iframe should not be used ever? </p></li> <li><p>how screen reader behaves with iframed content?</p></li> <li><p>Without iframe how we can embed any PHP page into asp.net based site?</p></li> <li><p>What are cross browser alternatives?</p></li> </ol> http://stackoverflow.com/questions/1893169/what-real-problems-does-using-tables-instead-of-divs-present-to-the-end-user 0 What real problems does using tables instead of divs present to the end user? kemp 2009-12-12T11:52:09Z 2009-12-12T12:55:11Z <p>Forgetting about things that pertain exclusively to the developer like code maintainability and religion wars about semantics and what-not, my question is: what real world problems does using tables present to the user? Are there device that cannot understand a tabled layout properly? Does it decrease the page's relevance on search engines?</p> <p>Of course I'm talking about a reasonable layout where tables are <strong>only</strong> used for things that in pure CSS/divs require hacks (and for tabular data obviously) -- not things like a hundred nested tables maybe even used instead of ul/li.</p> http://stackoverflow.com/questions/1883664/ruby-mac-geektool-question-file-access-rights 1 Ruby, Mac, Geektool question, file access rights? Pselus 2009-12-10T20:10:33Z 2009-12-12T10:14:22Z <p>I have a ruby script that I built in Textmate and can successfully run in Textmate. I can also successfully run this script straight from the terminal.</p> <p>The script has this chunk of code in it:</p> <pre><code># Get the XML file puts 'Opening the file' open("messages.xml", "r") do |f| puts 'File is opened' theXML = Hpricot::XML(f) puts 'Trying to get the message_entity' message_entity = GetMessage(theXML) # Build the system command puts 'Getting the author and the message' theAuthor = message_entity.search(:author).text theMessage = message_entity.search(:messagetext).text # Get the correct image for this author theAuthorImage = '' case theAuthor when 'James' : theAuthorImage = 'images/me32.png' when 'Zuzu' : theAuthorImage = 'images/Zuzu32.png' end puts "/usr/local/bin/growlnotify '" + theAuthor + " says' -m '" + theMessage + "' -n 'Laurens Notes' --image '" + theAuthorImage + "'" #system("/usr/local/bin/growlnotify '" + theAuthor + " says' -m '" + theMessage + "' -n 'Laurens Notes' --image '" + theAuthorImage + "'") end puts 'The End' </code></pre> <p>When the script is run by Geektool, it never gets past <code>puts 'File is opened'</code>. It doesn't even hit <code>puts 'The End'</code>. It gives no error at all.</p> <p>The script is under a folder under the /System folder on my Mac but I have changed the file permissions to allow "everyone" to have "read &amp; write" access. <strong>EDIT</strong> I just copied the files to a folder directly under my user home folder and it still has the issue in Geektool but not in Textmate or straight through the Terminal. <strong>END EDIT</strong></p> <p>Anyone have a clue what I should do?</p> http://stackoverflow.com/questions/1892151/if-i-make-form-layout-with-table-will-it-create-problem-for-screen-reader-use 0 if i make <form> layout with <table> will it create problem for screen reader users? Jitendra 2009-12-12T03:20:00Z 2009-12-12T03:30:23Z <p>if i make <code>&lt;form&gt;</code> layout with <code>&lt;table&gt;</code> will it create problem for screen reader users?</p> http://stackoverflow.com/questions/1881621/usability-and-accessibility-for-desktop-applications 1 Usability and Accessibility for Desktop Applications MagicAndi 2009-12-10T15:12:36Z 2009-12-10T17:28:52Z <p>Hi, </p> <p>I am about to start developing a desktop application, and I am interested in making the application both usable and accessible for end users. Can anyone suggest online resources that offer guidance for developing usable desktop applications? In particular, I would be interested in learning about how to test desktop applications for usability. I am aware of <a href="http://www.w3.org/WAI/ER/tools/complete" rel="nofollow">several tools to validate HTML for accessibility</a>; how could you test a desktop application for accessibility?</p> <p>Thanks, MagicAndi.</p> http://stackoverflow.com/questions/1877333/how-to-handle-alternative-themes-for-visual-impaired-users 0 How to handle alternative themes for visual impaired users SteveC 2009-12-09T22:19:20Z 2009-12-10T04:40:20Z <p>Has anyone got an thoughts on how to handle theming a WSS site for a single user who is visually impaired ... she uses high contrast settings for Word, etc. </p> <p>But still leave the usual theme for everyone else </p> http://stackoverflow.com/questions/1877158/access-objects-encapsulating-object 0 access object's encapsulating object mustafabattal 2009-12-09T21:49:52Z 2009-12-09T21:54:36Z <p>I have an wrapping object array -in fact a matrix- which includes a checkbox, I want to detect this object's position in array when included checkbox's state changes</p> <pre>public class visualCell implements ItemSelectable{ private JCheckBox checkBox; private int row; private int col; } </pre> <p>when a checkbox changes it's state, I want to be able to access the <em>visualCell</em> object which includes that, if that is possible. I add the listener to wrapping object by the way.</p> http://stackoverflow.com/questions/1871920/should-i-avoid-javascript-jquery-flash-ajax-silverlight-if-i-want-to-make-my 1 Should I avoid javascript , jquery, flash, ajax, silverlight if i want to make my site cross platform compatible and screen reader compatible? Jitendra 2009-12-09T06:17:10Z 2009-12-09T18:02:09Z <p>Should I avoid JavaScript , jQuery, flash, Ajax, Silverlight if i want to make my site cross platform compatible (PC, iPHONE other mobiles, PDA) and Accessible(screen reader compatible)?</p> <p>Should i only use xhtml css with server side language for wider accessibility?</p> <p>and for PC pr MAC i made everything first for Firefox so for mobile which browser should i choose?</p> http://stackoverflow.com/questions/1872380/is-it-ok-to-create-anchors-without-providing-anchor-text 0 Is it ok to create anchors without providing anchor text? Marcus 2009-12-09T08:19:14Z 2009-12-09T08:40:00Z <p>If you take this example, <code>&lt;a name="xxx"&gt;&lt;/a&gt;</code> ... is this ok when creating an anchor? I have always preferred to use an already created tag for my destinations.</p> http://stackoverflow.com/questions/1211928/alternative-to-targetblank-when-using-xhtml-strict-and-no-javascript 3 Alternative to target="_blank" when using XHTML strict and no javascript! AJM 2009-07-31T10:57:26Z 2009-12-08T16:46:02Z <p>I need to use XHTML strict</p> <p>I need to ensure my site works with no javascript.</p> <p>I need to open a new help window from my own application. Of course I wanted to use target="_blank" when no javascript detected but this is not XHTML strict.</p> <p>Are there any alternatives?</p> http://stackoverflow.com/questions/1857904/making-captcha-accessible-to-people-with-disabilities-what-approaches-have-you-u 4 Making CAPTCHA accessible to people with disabilities. What approaches have you used? Iain Fraser 2009-12-07T05:02:32Z 2009-12-07T15:19:09Z <p>Hi Guys</p> <p>I'm nearing the completion of migrating our existing website to a CMS and I've just finished creating all the various contact forms. The CMS I'm using has CAPTCHA built into it's form builder, which is great, but the only method available is the "decipher-the-noisy-image" method.</p> <p>This approach works well, but it limits access for people who might have reading or sight disabilities. I've worked around this by having a "help" page which allows those with disabilities to contact us by telephone and I'm considering having a single-field form which says "Send us your email address and we'll contact you". Accessibility is of particular importance to me as a web developer, but from an organisational perspective; so is reducing the amount of form spam we receive.</p> <p>So what I'd like to know is, has anyone in the community had any experience with other CAPTCHA methods and how have you managed to make them accessible to people with disabilities?</p> http://stackoverflow.com/questions/1851813/how-do-i-create-accessible-pdfs-from-html 0 How do I create "accessible" PDFs from HTML? MikeyB_Leeds 2009-12-05T10:27:47Z 2009-12-07T03:12:16Z <p>Hi</p> <p>Does anyone have any suggestions on how to generate accessible PDFs (including images) from HTML?</p> <p>The PDFs need to look like the original HTML, including positions of images etc. Any special HTML structure required to help make the final PDF accessible?</p> <ul> <li>I've seen questions about creating PDFS none of them specifically address the important issue of accessibility.</li> </ul> <p>My poison of choice is Perl but references to any program, language or library will help.</p> <p>I have a more in-depth question at TypeDoc if anyone has more general information to offer. <a href="http://doctype.com/TiB" rel="nofollow">http://doctype.com/TiB</a></p> <p>Also, I, and others, would find it useful if users with accessibility problems could comment if they find the "usability experience" of using PDFs better or worse than reading from Plain Old Semantic HTML (POSH).</p> <p>Thanks Mike</p> http://stackoverflow.com/questions/1818064/image-for-form-label 0 Image for form label Jackson 2009-11-30T06:01:39Z 2009-11-30T10:55:05Z <p>Hi All,</p> <p>I am quite interested in exploring accessibility in forms and accessibility in general. </p> <p>Is it against the rules to use an image as a label if the image also has an alt tag representing the the label? Would this be ok? If not what is the best approach? I have a small form for clients to enter their links to the social sites they use and would like to use the logo of the social site rather than text (label).</p> <p>Thanks, Jack</p> http://stackoverflow.com/questions/1753858/are-javascript-disabled-users-which-are-very-low-in-the-world-is-a-topic-of-acc 1 Are javascript disabled users (which are very low in the world) is a topic of accessibility? Jitendra 2009-11-18T05:34:39Z 2009-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/1801752/where-we-should-put-skip-to-content-links 2 Where we should put "skip to content" links? Jitendra 2009-11-26T05:48:49Z 2009-11-28T21:57:15Z <p>See place 1,2 and 3.</p> <pre><code>&lt;body&gt; &lt;Place 1&gt; &lt;div id="container"&gt; &lt;Place 2&gt; &lt;div id="header"&gt; &lt;Place 3&gt; &lt;div id="logo"&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; </code></pre> http://stackoverflow.com/questions/1806111/how-to-program-for-a-target-audience-of-handicapped-or-older-people 5 How to program for a target audience of handicapped or older people? Bertolt 2009-11-26T23:29:17Z 2009-11-27T03:35:42Z <p>Does anybody know about guide lines, web sites, etc. that describe, what one should keep in mind, if one is programming for a target audience that includes handicapped or older people? Or should one make no difference?</p> http://stackoverflow.com/questions/1770670/how-do-i-control-the-text-input-panel-programmatically-tabtip-exe-in-windows-vi 0 How do I control the text input panel programmatically (tabtip.exe) in windows vista/7. yngvedh 2009-11-20T14:11:07Z 2009-11-25T09:23:05Z <p>Hi,</p> <p>I'm adapting an application for touch screen interface and we're want to use the tablet text input panel included in windows vista/7, specifically its keyboard. I want to show and hide it as appropriate for my app. Basically I want ShowKeyboad() and HideKeyboard() functions. What's the best way to control this.</p> <p>I looked at the ITextInputPanel API but I was unable to control the keyboard directly with it (maybe I missed something?) I have also unsuccessfully tried to send window messages to its window.</p> <p>The application is written in c++/MFC.</p> <p>Any pointers at all are greatly appreciated.</p> http://stackoverflow.com/questions/1789643/how-long-can-a-url-be-before-bad-for-seo 0 How long can a URL be? Before bad for SEO Jitendra 2009-11-24T12:04:16Z 2009-11-24T16:26:17Z <p>How long can a URL be? Before bad for SEO</p> http://stackoverflow.com/questions/1790020/pitfalls-of-true-client-server-architecture-in-web-applications 0 Pitfalls of true client-server architecture in web applications ? julien 2009-11-24T13:22:00Z 2009-11-24T13:32:23Z <p>I've been researching on building web applications in a true client-server fashion. </p> <p>This type of architecture basically consists of : </p> <ul> <li><p>A <em>thin server</em>, merely a headless api that :</p> <ul> <li><p>handles security concerns</p></li> <li><p>processes core business logic</p></li> <li><p>provides data persistence </p></li> </ul></li> <li><p>A <em>fat client</em>, with a desktop-like design that :</p> <ul> <li><p>caches data, and makes offline use possible</p></li> <li><p>has gui-templating and rendering capabilities</p></li> <li><p>holds and processes non-critical business logic </p></li> </ul></li> </ul> <p>However, at first sight such an architecture wouldn't play nice with how the web works today :</p> <ol> <li><p>poor or no possible fallback when javascript isn't available (2% of user-agents nowadays, am I right ?)</p></li> <li><p>accessibility concerns (I'm kinda clueless here)</p></li> <li><p>SEO concerns, cloacking is an option but that means one should provide some server-side html rendering, and making that content relevent could be tricky</p></li> </ol> <p>Anything else I'm missing ? Which approach would you take to work around those issues ?</p> http://stackoverflow.com/questions/1783029/can-we-use-any-extension-in-longdesc-or-only-html-is-allowed-by-w3c 0 Can we use any extension in LONGDESC or only .html is allowed by W3C? Jitendra 2009-11-23T13:01:16Z 2009-11-23T16:56:02Z <p>Can we use any extension in or only HTML is allowed by W3C? and how <code>LONGDESC</code> link should be open , only as new windows or can we open Longdesc url in popup or lightbox?</p> <p>Does <code>LONGDESC</code> have any benefit for Site SEO?</p>