active questions tagged html - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T12:22:07Z http://stackoverflow.com/feeds/tag/html http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1946023/read-number-of-charaters-in-html-text-using-javascript 0 read number of charaters in HTML text using javascript Allen 2009-12-22T12:16:15Z 2009-12-22T12:19:30Z <p>suppose i am getting HTML text in my <strong>JavaScript function</strong> as</p> <pre><code>var TEMP= '&lt;p&gt;BODY&amp;nbsp;Article By Archie(Used By Story Tool)&lt;/p&gt;'; </code></pre> <p>i want to read the number of characters in TEMP,</p> <p>and while doing that i want to skip <strong>HTML tags</strong> and html keywords (ex. <code>&amp;nbsp;</code>)</p> <p>pls help</p> <p><strong>and important</strong> this should work on mozilla firefox browser. </p> http://stackoverflow.com/questions/1945965/strange-search-for-behaviour-in-ie-7 2 Strange search for behaviour in IE 7 c0mrade 2009-12-22T12:00:50Z 2009-12-22T12:17:56Z <p>Hi I'm having the most unusual thing ever .. I'll show you code and screen shots maybe someone can figure out whats going on .. Here is the thing I'm trying to make search form at the top of the page, here is my HTML: </p> <pre><code>&lt;div id="search_container"&gt; &lt;div class="field field_pad" id="header_search_query"&gt; &lt;div class="field_property" id="header_search_query_property"&gt; &lt;input type="text" onblur="if (this.value == '') { this.value = 'Text Search';}" onfocus="if (this.value == 'Text Search') { this.value = ''; }" onkeypress="if (Control.keyCodeEnter(event)) { return !Header.search(); } else { return true; }" maxlength="255" class="field_property_input_text" value="Text Search" name="SearchQuery" id="SearchQuery"/&gt; &lt;/div&gt; &lt;/div&gt; &lt;a class="searchButton" onclick="return Header.search()" href="#"&gt; &lt;div id="search_button"&gt;SEARCH&lt;/div&gt; &lt;/a&gt; &lt;/div&gt; </code></pre> <p>Here is the result from ff :</p> <p><img src="http://i50.tinypic.com/wl5f1s.jpg" alt="alt text"></p> <p>Here are results from IE7 :</p> <p><img src="http://i48.tinypic.com/33vf5w4.jpg" alt="alt text"></p> <p>You see the weird change the input element disappears, but when I hover/mouseover SEARCH button it becomes visible again for reason I can't tell, so here is how I tried to solve it, by calling this function on.window load </p> <pre><code>function appendSearch() { document.getElementById('SearchQuery').style.display='block'; } </code></pre> <p>And this does trick for few pages displayed in IE .. but the thing is it doesn't apply to all pages, what else can I do, why is this happening in the first place. I consider any suggestions thank you in advance.</p> <p><strong>EDIT:</strong> </p> <p>CSS Definitions :</p> <pre><code>div#search_container { background-color:#F6F6F5; border:1px solid #666; float:right; margin-right:20px; padding:7px; width:525px; } div#header_search_query { float:left; margin-right:5px; margin-top:0; width:433px; } div.field { overflow:hidden; position:relative; width:100%; } .field_pad { margin-top:5px; } div.field_property { display:inline; float:left; margin:0; position:relative; } input#SearchQuery { display:inline; height:17px; padding:5px 3px 3px; width:423px; } </code></pre> http://stackoverflow.com/questions/1945258/is-it-possible-to-render-html-as-text-using-perl-as-lynx-does 1 Is it possible to render HTML as text using Perl as Lynx does? Aaron 2009-12-22T09:43:00Z 2009-12-22T12:02:28Z <h3>Question:</h3> <ul> <li>Is there a module to <b>render HTML</b>, specifically to gather the text, while adhering to <b>font-style tags</b>, such as <code>&lt;tt&gt;</code>, <code>&lt;b&gt;</code>, <code>&lt;i&gt;</code>, etc and <b>break-line</b> <code>&lt;br&gt;</code>, similar to <a href="http://lynx.isc.org/" rel="nofollow">Lynx</a>. </li> </ul> <p><b>For example</b>:</p> <p><code># cat test.html</code></p> <pre><code>&lt;body&gt; &lt;div id="foo" class="blah"&gt; &lt;tt&gt;test&lt;br&gt; &lt;b&gt;test&lt;/b&gt;&lt;br&gt; whatever&lt;br&gt; test&lt;/tt&gt; &lt;/div&gt; &lt;/body&gt; </code></pre> <p><code># lynx.exe --dump test.html</code></p> <pre><code>test test whatever test </code></pre> <p><strong>Note:</strong> the second line should be bold.</p> http://stackoverflow.com/questions/1945631/js-how-to-make-document-getelementbyid-cross-browser 0 JS: How to make document.getElementById cross-browser? Sarfraz Ahmed 2009-12-22T10:57:12Z 2009-12-22T11:59:50Z <p>Hi,</p> <p><strong>document.getElementById</strong> doesn't seem to work across all browsers (I mean some old ones) and I am sure there are developers who are not aware of this.</p> <p>What solutions would you suggest to make it cross-browser?</p> <p>Thanks</p> http://stackoverflow.com/questions/1945164/how-to-make-silde-like-homepage-of-adidas-com-with-jquery 0 How to make silde like homepage of adidas.com with jquery quang trung 2009-12-22T09:25:04Z 2009-12-22T10:59:42Z <p>adidas.com so cool !!!!!!!!!!</p> <p>why not with jQuery, CSS &amp; HTML?</p> <p>How div with different height &amp; width together fill up div container when height &amp; width are get random from database?</p> <p>Someones help me?</p> http://stackoverflow.com/questions/1945581/html-textarea-not-correctly-sized-in-table-in-ie8-doctype-problem 0 HTML textarea not correctly sized in table in ie8. Doctype problem? haymansfield 2009-12-22T10:48:26Z 2009-12-22T10:48:26Z <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt; &lt;head runat="server"&gt; &lt;title&gt;Untitled Page&lt;/title&gt; &lt;style type="text/css"&gt; #textarea1 { width: 100%; overflow:hidden; } #table1 { background-color:#0000ff; width: 100px; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;form id="form1" runat="server"&gt; &lt;table id="table1" &gt; &lt;tr&gt;&lt;td&gt;&lt;textarea cols="0" rows="2" id="textarea1"&gt;&lt;/textarea&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>The textarea is not rendered correctly in the table (it is wider than its cell). If I remove the doctype tag it renders correctly. Am I doing something stupid?</p> http://stackoverflow.com/questions/1945511/seting-user-agent-param-in-php-simple-html-dom-parser 0 Seting User Agent param in PHP Simple HTML DOM Parser Mithun 2009-12-22T10:35:06Z 2009-12-22T10:44:44Z <p>Is there any way to include the user agent string along with the request send by PHP Simple HTML DOM Parser?</p> http://stackoverflow.com/questions/1939882/how-to-reload-a-html-page-when-your-code-changes 1 How to reload a html page when your code changes Skúli 2009-12-21T12:39:04Z 2009-12-22T10:19:36Z <p>I remember watching a jquery demo by John Resig. He had a browser application that reloaded live while he was coding. I think he did not even have to save his code changes for this to happen ( see 3:40 in the video ). </p> <p>This is the video: <a href="http://vimeo.com/116991" rel="nofollow">http://vimeo.com/116991</a></p> <p>I find this really cool and think this can be really useful and fun while you are coding.</p> <p>Do you know what application he was using? Do you know how this is done or might be done?</p> <p>Update:</p> <p>I tried this javascript code:</p> <pre><code>window.setInterval("if(document.hasFocus()===false)location.reload(true);",3000); </code></pre> <p>It works in firefox, I get a warning in IE and it doesn't work in chrome( document.hasFocus() is alway true )</p> <p>Not a perfect solution, but it works, though not gracefully. The downside is that this code is in the solution itself. Using ajax that can be fixed.</p> http://stackoverflow.com/questions/1272947/lightbox-using-an-area-map-in-internet-explorer 0 Lightbox using an area map in Internet Explorer Kristopher Myers 2009-08-13T16:06:19Z 2009-12-22T10:00:00Z <p>I am trying to use Lightbox with an area map. I have gotten it to work fine with Firefox, but in Internet Explorer, it simply opens a new window. I tried using Slimbox, but it doesn't seem to support area maps at all.</p> <p>Suggestions? Here is the HTML code:</p> <pre><code>&lt;div align="center"&gt;&lt;img src="images/background-temporary.jpg" width="667" height="475" border="0" usemap="#Map" /&gt; &lt;map name="Map" id="Map"&gt; &lt;area href="images/background-temporary.jpg" shape="poly" coords="236,396,267,396,269,428,237,429,236,396" /&gt; &lt;/map&gt; </code></pre> <p></p> http://stackoverflow.com/questions/1945069/textmate-select-and-modify-matching-html-tags 1 Textmate - select and modify matching HTML Tags Bernd Plontsch 2009-12-22T09:02:22Z 2009-12-22T09:17:17Z <p>Textmate - Is there a shortcut for selecting matching HTML tags or another way to quickly remove/modify an existing begin and end tag at once?</p> <p>Kind of like SHIFT + CTRL + W ... but for tags that already exist in the code. </p> http://stackoverflow.com/questions/1944631/could-not-instantiate-mail-function-why-this-error-occuring 0 Could not instantiate mail function. Why this error occuring Rajasekar 2009-12-22T07:06:09Z 2009-12-22T07:33:06Z <p>When Im trying to send mail through PHPMailer, im getting this error message. My code is below. Help</p> <p><strong>CODE :</strong></p> <pre><code>&lt;? require("phpmailer/class.phpmailer.php"); // First we require the PHPMailer libary in our script $mail = new PHPMailer(); // Next we create a new object of the PHPMailer called $mail $mail-&gt;From = "rajasekar.kcet@gmail.com"; $mail-&gt;FromName = "Rajasekar"; $mail-&gt;AddAddress("rajasekar.kcet@gmail.com"); // This is the adress to witch the email has to be send. $mail-&gt;Subject = "First PHP Email message"; // This is the subject of the email message. $mail-&gt;Body = "Hi! \n\n This is my first e-mail sent through PHP."; // This is the actual email message if(!$mail-&gt;Send()) // Now we send the email and check if it was send or not. { echo 'Message was not sent.'; echo 'Mailer error: ' . $mail-&gt;ErrorInfo; } else { echo 'Message has been sent.'; } ?&gt; </code></pre> <p>Plz help, Any suggestion will be highly appreciated</p> http://stackoverflow.com/questions/1943926/ie-6-performance-vs-clean-unobtrusive-javascript 2 IE 6 performance vs. clean, unobtrusive Javascript jonathanconway 2009-12-22T03:01:11Z 2009-12-22T07:06:30Z <p>Normally I love to keep my HTML code clean, semantic and free from either Javascript or CSS. I include my .JS and .CSS files at the top, and layer functionality on top of the DOM elements.</p> <p>The positives of this are:</p> <ul> <li>Architectural separation of concerns</li> <li>Graceful degradation where Javascript or CSS isn't supported</li> <li>Search-engine friendliness</li> </ul> <p>There is one major negative:</p> <ul> <li>Performance problems in IE 6</li> </ul> <p>Because all the events are attached to the elements through Javascript code, which accesses the DOM, performance in IE suffers.</p> <p>This is especially so when using jQuery (which happens to be my favorite Javascript framework).</p> <p>So it seems like I have two choices: either keep the code nice and neat, and have IE 6 users (around 20% of the user-base) complain, or "de-normalize" the code to improve IE 6 performance.</p> <p>Is there a "middle way" in this situation? Or am I doomed?</p> <p><hr></p> <p>Note: I'm not saying that my performance problems are caused by having Javascript in a separate file. </p> <p>I can achieve wonderful performance in IE while keeping it in a separate file.</p> <p>The problem is, I still have to put the actual event handlers into 'onclick' attributes in the HTML. For example:</p> <pre><code>&lt;span onclick="doSomething()"&gt;More...&lt;/span&gt; </code></pre> <p>It would be much nicer if I could just write:</p> <pre><code>&lt;span id="more-button"&gt;More...&lt;/span&gt; </code></pre> <p>And then assign it separately, in Javascript, with the following:</p> <pre><code>$("#more-button").click(doSomething); </code></pre> <p>Unfortunately, it seems this is bad for IE6 performance.</p> http://stackoverflow.com/questions/1076309/user-upload-profile-pictures-on-django-jquery-website-in-jpg-gif-png-format 0 User upload profile pictures on django/jquery website in .jpg/.gif/.png format. How can I scale/crop them down when displaying them? MikeN 2009-07-02T19:44:33Z 2009-12-22T06:36:27Z <p>I'm letting users upload a profile picture for themselves on my site. These images are coming in on all different formats and sizes. When I display these profile photos I want them to be of a uniform pixel size without distortion.</p> <p>Do I have to have the user crop the image right when they upload it?</p> <p>Given a randomn image, how can I scale it down so it is below a certain pixel height/width while not distorting the images?</p> http://stackoverflow.com/questions/1944464/resize-flash-div-to-full-browser-height-and-width 0 resize flash div to full browser height and width ? NetCaster 2009-12-22T06:16:27Z 2009-12-22T06:32:03Z <p>Hi Folks</p> <p>i have a page with swf flash flash with width 300x250</p> <pre><code>&lt;div id="flashswf"&gt; ...some flash &lt;/div&gt; &lt;div id="maxme"&gt;full screen&lt;/div&gt; </code></pre> <p>i have a link called full screen and i need to maximize the flashswf div to fit the current browser maximum height and width</p> <p>is this possible using jquery ? any ideas plz</p> http://stackoverflow.com/questions/1944455/how-to-enable-search-button-in-html-help-workshop-software 0 How to enable search button in HTML help Workshop software Rupa 2009-12-22T06:13:01Z 2009-12-22T06:30:00Z <p>Hi, I have installed HTML help workshop software (version 4.73) in my system and I have created a project.I could open the .chm file and view the files under it. However, I am not getting the search tab in .chm file. I am gettig <strong>stop</strong> menu item in "OPTIONS" menu.</p> <p>Can any one tell me how to display search tab in .chm file?</p> <p>Please tell me asap.</p> <p>Thanks Rupa</p> http://stackoverflow.com/questions/1944271/html5-video-tag-with-no-source 0 HTML5 Video tag with no source? askvictor 2009-12-22T05:09:51Z 2009-12-22T06:21:59Z <p>Is there any defined behaviour if I have an HTML5 VIDEO tag but include neither a SRC attribute nor SOURCE tags inside the element? Would this still be valid HTML, and if so, what should the (HTML5 capable) browser do - ignore the element or display it's contents?</p> http://stackoverflow.com/questions/1941098/html-page-alignment-issue 0 html page alignment issue George2 2009-12-21T16:28:03Z 2009-12-22T05:57:33Z <p>Hello everyone,</p> <p>I am developing an html page on Windows platform. I find when the resolution (or size, in pixels) of browser (display) is larger than the page size, the page will be aligned to the left of the browser, and I want to align the page to the center (middle) of the browser when the page size is smaller than browser.</p> <p>Any ideas how to implement this and how to find the root cause why aligned to left? The html page is big and not convenient to paste html code here.</p> <p>thanks in advance, George</p> http://stackoverflow.com/questions/1944267/how-to-change-the-default-text-of-input-typefile 0 How to change the default text of <input type="file" />? unknown (google) 2009-12-22T05:07:55Z 2009-12-22T05:28:25Z <pre><code>&lt;input type="file" value="Browse" name="avatar" id="id_avatar" /&gt; </code></pre> <p>I tried to modify the <code>value</code>,but it's not working,how to customize the text?</p> http://stackoverflow.com/questions/1944213/is-it-good-to-put-p-inside-td-to-put-content-text 1 Is it good to put <p> inside <td> to put content text? Jitendra 2009-12-22T04:43:23Z 2009-12-22T05:04:47Z <p>Which is more semantic and valid?</p> <pre><code>&lt;td&gt; &lt;p&gt; content text &lt;/p&gt; &lt;/td&gt; </code></pre> <p>or </p> <pre><code>&lt;td&gt; content text &lt;/td&gt; </code></pre> http://stackoverflow.com/questions/1905464/html-select-dropdown 1 Html Select dropdown deepak 2009-12-15T06:08:32Z 2009-12-22T04:49:30Z <p>is there any way i can trap html select events and can prevent the html select dropdown to open (disabling html select is ruled out) </p> http://stackoverflow.com/questions/1943989/what-is-the-purpose-of-this-javascript 0 What is the purpose of this JavaScript? cschol 2009-12-22T03:26:23Z 2009-12-22T04:40:54Z <p>I was playing around with a Python-based HTML parser and parsed Stackoverflow. The parser puked on a line with </p> <pre><code>HTMLParser.HTMLParseError: bad end tag: "&lt;/'+'scr'+'ipt&gt;", at line 649, column 29 </code></pre> <p>The error points to the following lines of javascript in the site's source:</p> <pre><code>&lt;script type="text/javascript"&gt; document.write('&lt;s'+'cript lang' + 'uage="jav' + 'ascript" src=" [...] "&gt;'); document.write('&lt;/'+'scr'+'ipt&gt;'); &lt;/script&gt; </code></pre> <p>([...] replace a long link, which is removed for simplicity)</p> <p>Out of curiosity, is there a specific reason for what looks to me like artificial 'obfuscation' of the code, i.e. why use the document.write method to concatenate all the chopped up strings?</p> http://stackoverflow.com/questions/1939949/html-do-we-really-need-different-doctypes 10 HTML: Do we really need different DocTypes? XSLT designer 2009-12-21T12:54:35Z 2009-12-22T04:28:39Z <p>why w3c has the conventions of different Doc-types .. ? Instead they could have recommended only one Doc-type (say loose type.. as it would prone to less number of SILLY errors) and would have standardized it to all browsers (including the ones in mob and PDAs) ..<br><br>I haven't got any satisfying answer in any tutorial yet .. I have been reading "how these different Doc-types differ in" but I want to know do we really need it ???</p> http://stackoverflow.com/questions/1944019/how-do-i-get-all-checkbox-variables-even-if-not-checked-from-html-to-php 0 how do I get all checkbox variables even if not checked from HTML to PHP? netrox 2009-12-22T03:37:25Z 2009-12-22T04:17:11Z <p>I noticed that PHP seems to return only values of checked checkboxes. I would like to see a list of checkboxes, not just values of checked checkboxes. Is there a way to detect variables of unchecked boxes? </p> <p>I asked because I want to be able to update settings. For example, I have a few options that are already checked but if an user decides to uncheck an option, I need to know that unchecked value so I can update the option to be disabled. </p> http://stackoverflow.com/questions/1944057/how-to-know-the-correct-css-selector-or-group-of-selector-for-any-html-element-qu 1 How to know the correct css selector or group of selector for any html element quickly? Jitendra 2009-12-22T03:45:58Z 2009-12-22T04:10:36Z <p>How to know the correct selector/group of selector for any html element quickly? I'm working on very long bloated html code. and want to apply css on some specfic areas but it's taking to so much time to find a right css selector for any deeply nested html tag in tables.</p> <p>for example</p> <pre><code>#id1 #id2 .class1 .class2 table.no1 tbody td </code></pre> <p>Is there any quick way or tool to know perfect css selector for any needed elemnt quickly?</p> <p>I also need to override some css on some elements?</p> <p>Edit:</p> <p>After to get answer from @BalucC</p> <p>In addition i also found this tool for IE users it work same like Web developer toolbar"</p> <h2>MRI: test your selectors</h2> <p>MRI is a bookmarklet for Internet Explorer 6+, and Webkit and Mozilla based browsers (including Safari, Firefox, Camino or Mozilla). Use it to test and play with selectors. <a href="http://www.westciv.com/mri/" rel="nofollow">http://www.westciv.com/mri/</a></p> <p><a href="http://east08.webdirections.org/blog/wp-content/uploads/2009/06/e38394e382afe38381e383a3-8.png" rel="nofollow">See screenshot here</a></p> http://stackoverflow.com/questions/1943674/very-basic-html-scripting-active-page-question 0 Very basic HTML/scripting/active page question Ryan 2009-12-22T01:25:02Z 2009-12-22T02:53:48Z <p>Hi,</p> <p>A friend has asked me for help with her website design. Although I know a fair amount about the basics behind HTML, XML, Php, ASP.Net, javascript, etc., I'm not really comfortable sitting down and coding from scratch. All of the work I do is in Java, C++, and so on.</p> <p>My friend would like to add a vertically scrolling marquee to her site - no problem, there is code for that all over the internet. Here is the tricky part - she would like the text to be dynamically pulled from another website. This isn't like a simple text file, either - it's a list of names from a specific blog post, so there would be a lot of text processing involved to wade through all of the other markup, and extract the relevant info.</p> <p>The way I see it, here are her options - </p> <p>1) Write some kind of a perl script or somesuch that is set to run daily. This script will visit the blog and extract the necessary info. It will then update the HTML file's marquee text with its new info.</p> <p>2) Some sort of active page written in ASP or PHP that will dynamically build the marquee (and the rest of the site) each time the site is visited, basically doing the work of the perl script each time. This seems like it has the potential to be somewhat slow.</p> <p>Per my understanding, those are her only options. Am I correct? There is no simply way to do this in javascript that I am just missing? I know you can reference an image to be dynamically pulled with the marquee, but this isn't that simple...</p> <p>Thanks.</p> <p>EDIT: I guess where I was going with my question was this: Unless I implement this statically, this is going to be fairly involved, right? I believe it is over my head. This is why I would like to simply copy/paste the text list into the html document. It would need to be updated every time the blog does, but that only appears to happen every few months, so that's not a large chore. I realize this is a lazy solution, but this is from someone very inexperienced in web development.</p> <p>For reference, this is the SPECIFIC blog post which the text will come from, and my friend would ONLY like to display that list of names that begins when you scroll several paragraphs down.</p> <p><a href="http://truthnottasers.blogspot.com/2008/04/what-follows-are-names-where-known.html" rel="nofollow">http://truthnottasers.blogspot.com/2008/04/what-follows-are-names-where-known.html</a></p> http://stackoverflow.com/questions/1729447/what-are-the-benefits-of-using-semantic-html 3 What are the benefits of using semantic HTML? burak ozdogan 2009-11-13T14:13:54Z 2009-12-22T02:49:39Z <p>Hi,</p> <p>Are there some noticeable outcomes in terms of performance or other aspects to follow semantic HTML?</p> <p>Thanks</p> http://stackoverflow.com/questions/1495407/css-a-way-to-maintain-aspect-ratio-when-resizing-a-div 0 CSS: A way to maintain aspect ratio when resizing a DIV? jackb 2009-09-29T23:11:05Z 2009-12-22T02:29:27Z <p>I want to resize a DIV container as the window width changes via % width.</p> <p>Are there any new CSS3 rules that would allow the height to change according to the change of width, maintaining the original aspect ratio?</p> <p>I know I can do this via javascript, I would just rather not if I don't have to.</p> <p>EDIT: To better explain what I'm trying to accomplish... I want to create a grid whose cells (divs) can change in width/height as the window width changes.</p> http://stackoverflow.com/questions/1943721/javascript-how-to-append-more-text-to-user-copied-text-ala-nydailynews-com 1 Javascript: how to append more text to user copied text ala nydailynews.com John 2009-12-22T01:38:48Z 2009-12-22T02:17:23Z <p>On <a href="http://nydailynews.com" rel="nofollow">nydailynews.com</a> when you copy and paste any text from the site, a snippet of text is appended. </p> <blockquote> <p>Read more: <a href="http://www.nydailynews.com/#ixzz0aN123abc" rel="nofollow">http://www.nydailynews.com/#ixzz0aN123abc</a></p> </blockquote> <p><strong>How do they achieve this?</strong> </p> <p>I have searched all of the external JavaScript files (jquery) and can't seem to find anything that corresponds. Is this something that could be done in simple css?</p> http://stackoverflow.com/questions/1943692/possible-to-generate-summaries-statistics-from-html-table 0 possible to generate summaries/statistics from html table? Ross Rogers 2009-12-22T01:30:25Z 2009-12-22T01:47:33Z <p>If I have a table like:</p> <pre><code>+-----------+-----------+-----------+ | PRIORITY | ITEM | COMPLETED | +-----------+-----------+-----------+ | 0 | foo | YES | +-----------+-----------+-----------+ | 1 | bar | | +-----------+-----------+-----------+ | 2 | baz | YES | +-----------+-----------+-----------+ </code></pre> <p>Can plain ol' HTML auto-generate a final summary line like:</p> <pre><code>+-----------+-----------+-----------+ | | | 2/3 | +-----------+-----------+-----------+ </code></pre> http://stackoverflow.com/questions/1329481/send-keys-to-wpf-browser-control 0 Send keys to WPF Browser control Jobi Joy 2009-08-25T16:41:56Z 2009-12-22T01:37:12Z <p>Can I programatically send [UserID]{TAB}[Password]{CARRIAGE RETURN} to a webbrowser control which has a userID, password and Sign-in button there. I wanted to use my own virtual keyboard in my application. Any tips here?</p>