User jtyost2 - Stack Overflowmost recent 30 from stackoverflow.com2009-11-25T14:39:59Zhttp://stackoverflow.com/feeds/user/657http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1685078/how-do-you-make-a-div-tag-into-a-link/1685164#16851641Answer by jtyost2 for How do you make a div tag into a linkjtyost22009-11-06T03:08:59Z2009-11-06T03:08:59Z<p>If you have to set your anchor tag inside the div, you can also use CSS to set the anchor to fill the div via display:block.</p>
<p>As such:</p>
<pre><code><div style="height: 80px"><a href="#" style="display: block">Text</a></div>
</code></pre>
<p>Now when the user floats their cursor in that div the anchor tag will fill the div.</p>
http://stackoverflow.com/questions/5025/locking-a-sql-server-database-with-php0Locking a SQL Server Database with PHPjtyost22008-08-07T17:36:23Z2009-08-12T02:03:50Z
<p>I'm wanting extra security for a particular point in my web app. So I want to lock the database (SQL Server 2005). Any suggestions or is this even necessary with SQL Server?</p>
<p>Edit on question:</p>
<p>The query is failing silently with no errors messages logged, and does not occur inside of a transaction.</p>
<p>Final Solution:</p>
<p>I never was able to solve the problem, however what I wound up doing was switching to MySQL and using a transactional level query here. This was not the main or even a primary reason to switch. I had been having problems with SQL Server and it allowed me to have our CMS and various other tools all running on the same database. Previous we had a SQL Server and a MySQL database running to run our site. The port was a bit on the time consuming however in the long run I feel it will work much better for the site and the business.</p>
http://stackoverflow.com/questions/1246070/help-with-this-join/1246409#12464090Answer by jtyost2 for Help with this JOINjtyost22009-08-07T18:51:58Z2009-08-07T18:51:58Z<p>I tried this and it worked as what it sounds like you want</p>
<pre><code>SELECT DISTINCT t.id, t.title FROM threads AS t LEFT JOIN comments AS c ON t.id = c.parent_id ORDER BY c.date DESC
</code></pre>
<p>The only real thing that I changed was using</p>
<p>FROM threads <strong>AS</strong> T</p>
http://stackoverflow.com/questions/29357/security-for-voting-application0Security For Voting Applicationjtyost22008-08-27T02:09:29Z2009-07-07T08:48:39Z
<p>I have a project to build a voting desktop application for a class in Java. While security isn't the focus of the project, I would like to be as realistic as I can. What are some of the primary tools to integrate security into a Java application.</p>
<p>Edit: I'm not primarily worried about physical security, we are simply building an application not a whole system. I want to ensure votes are recorded correctly and not able to be changed or read by someone else.</p>
http://stackoverflow.com/questions/1019857/what-is-a-good-response-to-best-viewed-in-x4What is a Good Response to "Best Viewed in x"?jtyost22009-06-19T20:17:52Z2009-06-19T22:44:11Z
<p>Is there a good response to the statement "Best viewed in x"?</p>
<p>Specifically, I was trying to access a site and the site was horribly broken on Webkit browsers. I sent an email to the webmaster including screenshots. The webmaster responded to me that the site "is best viewed in Internet Explorer."</p>
<p>Now there are some other issues with this site even if you view it in IE, for instance the site is part of a public university, and as such they are not following either the university's guidelines or accessiable for disabled persons.</p>
<p>Is there a best response to this sort of statement? I am not looking to strike them down, or call the webdevelopers bad at their job, rather that they should know this isn't an acceptable response.</p>
<p>Please note I am not trying to start a discussion over the benefits of one technology over the other, but specifically with regards to the internet, shouldn't I be able to view a site in any of the major browsers (IE, FF, Safari, Chrome, Opera, etc).</p>
http://stackoverflow.com/questions/342365/what-should-coding-guidelines-do-and-are-there-any-good-examples-of-guidelines6What should coding guidelines do, and are there any good examples of guidelines?jtyost22008-12-04T22:45:43Z2009-05-25T15:33:58Z
<p>What are some good examples of coding guidelines. I'm not really looking for anything specific to a single language.</p>
<p>But what should I be doing/evaluating as I write coding guidelines? Such as how flexible should the guidelines and how much should decisions be left to the programmer or to someone else or even pre-decided by the guidelines.</p>
<p>This set of guidelines that I am working on is supposed to cover a wide range of topics: comments, database design, and even some user interface guidelines.</p>
http://stackoverflow.com/questions/843748/is-this-good-membership-payment-database-schema/843768#8437685Answer by jtyost2 for Is this good membership payment database schema?jtyost22009-05-09T18:07:37Z2009-05-09T18:07:37Z<p>I would also include a date time stamp for when the payment is received and possibly mark if a payment is complete or incomplete amount.</p>
http://stackoverflow.com/questions/841918/css-selectors/841975#8419750Answer by jtyost2 for CSS Selectorsjtyost22009-05-08T21:47:54Z2009-05-08T21:47:54Z<p>The child selector in this the > symbol lets you select only those em tags that are direct descendants of an h1 tag.</p>
<p>Example is the easiest way to explain it:</p>
<pre><code><h1>H1 Tag <em id="first">child selector<em id="second">not a direct child descendant</em></em> </h1>
</code></pre>
<p>In this case the first em tag will have the h1 > em style and the h1 em style applied, however the second em tag or the non direct child will not have h1 > em style applied since it is not a direct child or descendant of the h1.</p>
<p>You can see the doctree spec here: <a href="http://www.w3.org/TR/CSS2/conform.html#doctree" rel="nofollow" title="W3C Doctree Spec">http://www.w3.org/TR/CSS2/conform.html#doctree</a></p>
http://stackoverflow.com/questions/764356/what-is-the-difference-between-an-f5-refresh-of-a-page-and-pasting-that-url-in/764361#7643610Answer by jtyost2 for What is the difference between an F5 (refresh) of a page and pasting that URL in a new window?jtyost22009-04-18T22:29:57Z2009-04-19T19:36:41Z<p>Hitting Ctrl-F5 will clear your local (ie. the browser's cache) of any files for that site. Whereas simply opening the site in a new tab will load any files from the cache first.</p>
http://stackoverflow.com/questions/762389/what-date-formats-does-the-php-function-strtotime-support/762623#7626230Answer by jtyost2 for What date formats does the PHP function strtotime() support?jtyost22009-04-18T00:24:11Z2009-04-18T00:24:11Z<p>Basically anything that <a href="http://ca.php.net/manual/en/function.date.php" rel="nofollow">date</a> can create strtotime will parse. With one exception, it does have issues with non-US style formatting. So keep it Month-Day-Year type formatting in place.</p>
http://stackoverflow.com/questions/312805/is-there-a-good-web-based-project-management-app-with-scheduling/336351#3363510Answer by jtyost2 for Is there a good web-based project management app with scheduling?jtyost22008-12-03T06:28:10Z2009-03-05T23:49:48Z<p>Rather than using the spin-off (projectpier) use the real thing <a href="http://www.activecollab.com/" rel="nofollow">http://www.activecollab.com/</a>. My company is currently in the process of switching to <a href="http://www.easyprojects.net/" rel="nofollow">http://www.easyprojects.net/</a>, from Active Collab</p>
http://stackoverflow.com/questions/547216/how-to-make-a-pdf-file-using-php/547229#5472298Answer by jtyost2 for How to make a pdf file using PHPjtyost22009-02-13T19:04:25Z2009-02-13T19:04:25Z<p>You have two good options first is the standard php library for manipulating pdf's: <a href="http://us2.php.net/pdf" rel="nofollow">http://us2.php.net/pdf</a></p>
<p>Or you can use <a href="http://www.fpdf.org/" rel="nofollow">http://www.fpdf.org/</a>. I would recommend the second.</p>
<p>Other options include:
<a href="http://www.pdflib.com" rel="nofollow">www.pdflib.com</a></p>
http://stackoverflow.com/questions/526312/when-should-i-use-final/526322#5263220Answer by jtyost2 for When should I use "final"?jtyost22009-02-08T20:37:04Z2009-02-08T20:37:04Z<p>A final class is a class that can not be subclassed, so anything that you don't want to have derivatives created of. For instance in Java, the Math class is final since Java doesn't want you to be able to redefine what Absolute value means.</p>
http://stackoverflow.com/questions/526294/how-might-i-force-a-floating-div-to-match-the-height-of-another-floating-div/526316#5263163Answer by jtyost2 for How might I force a floating DIV to match the height of another floating DIV?jtyost22009-02-08T20:33:27Z2009-02-08T20:33:27Z<p><a href="http://www.filamentgroup.com/lab/setting_equal_heights_with_jquery/" rel="nofollow">Here is a jQuery plugin</a> to set the heights of multiple divs to be the same. And below is the actual code of the plugin.</p>
<pre><code>$.fn.equalHeights = function(px) {
$(this).each(function(){
var currentTallest = 0;
$(this).children().each(function(i){
if ($(this).height() > currentTallest) { currentTallest = $(this).height(); }
});
if (!px || !Number.prototype.pxToEm) currentTallest = currentTallest.pxToEm(); //use ems unless px is specified
// for ie6, set height since min-height isn't supported
if ($.browser.msie && $.browser.version == 6.0) { $(this).children().css({'height': currentTallest}); }
$(this).children().css({'min-height': currentTallest});
});
return this;
};
</code></pre>
http://stackoverflow.com/questions/519314/stackoverflows-wmd-system-where-does-my-input-become-html/519320#5193201Answer by jtyost2 for Stackoverflows WMD System - Where does my input become HTML?jtyost22009-02-06T06:35:01Z2009-02-06T06:35:01Z<p>Well first of all StackOverflow is built on ASP.NET, but yes essentially the characters in the rich text box gets translated back and forth.</p>
http://stackoverflow.com/questions/516255/is-there-a-way-to-dynamically-change-a-buttons-css-class/516271#5162712Answer by jtyost2 for Is there a way to dynamically change a button's CSS class?jtyost22009-02-05T15:09:24Z2009-02-05T15:09:24Z<p>Unfortunately I don't know of a way to change a button's page without JS. CSS, Java and everything else runs while the page is loading, after the page has loaded the only way to interact with the page is via JS.</p>
<p>However here is the JS that works in any browser (IE 6+, Safari, Opera, FF, etc),</p>
<pre><code> if(document.getElementById('foo'))
{
document.getElementById('foo').className='bar';
}
</code></pre>
http://stackoverflow.com/questions/490618/multiple-javascript-css-files-best-practices/490686#49068614Answer by jtyost2 for Multiple javascript/css files: best practices?jtyost22009-01-29T06:42:40Z2009-02-02T07:31:35Z<p>I would suggest using <a href="http://code.google.com/p/minify/" rel="nofollow" title="Google Code: Minify">PHP Minify</a>, which lets you create a single HTTP request for a group of JS or CSS files. Minify also handles GZipping, Compression, and HTTP Headers for client side caching.</p>
<p>Edit: Minify will also allow you to setup the request so that for different pages you can include different files. For example a core set of JS files along with custom JS code on certain pages or just the core JS files on other pages.</p>
<p>While in development include all the files as you normally would and then when you get closer to switching to production run minify and join all the CSS and JS files into a single HTTP request. It's really easy to setup and get working with.</p>
<p>Also yes, CSS files should be set in the head, and JS files served at the bottom, since JS files can write to your page and can cause massive time-out issues.</p>
<p>Here's how you should include your JS files:</p>
<pre><code></div> <!-- Closing Footer Div -->
<script type="application/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.1.min.js"></script>
</body>
</html>
</code></pre>
<p>Edit: You can also use <a href="http://stevesouders.com/cuzillion/" rel="nofollow" title="Cuzillion">Cuzillion</a> to see how your page should be set up.</p>
http://stackoverflow.com/questions/464332/internet-explorer-full-screen-mode/464340#4643401Answer by jtyost2 for Internet Explorer full screen mode?jtyost22009-01-21T07:33:08Z2009-01-21T14:18:23Z<p>Here is some information regarding that problem: <a href="http://www.htmlgoodies.com/beyond/dhtml/article.php/3470521" rel="nofollow">http://www.htmlgoodies.com/beyond/dhtml/article.php/3470521</a></p>
<p>And to sum up the info, paste this bit of JS into the head of the code.</p>
<pre><code><script>
<!--
window.open("bigpage.html","fs","fullscreen=yes")
//-->
</script>
</code></pre>
http://stackoverflow.com/questions/375320/drop-down-box-not-fully-displayed-all-browsers0Drop Down Box Not Fully Displayed (All Browsers)jtyost22008-12-17T17:26:12Z2008-12-31T02:45:57Z
<p><img src="http://farm4.static.flickr.com/3200/3116366800_570cc971b9_m.jpg" alt="Screenshot of Drop Down" /></p>
<p>This would be my issue I have a drop down that's not displaying fully. I'm not sure even where to start so here's the HTML surronding the drop down and I'll provide the CSS also.</p>
<p>HTML</p>
<pre><code><div id="add_item">
<ul class="vert">
<li>
<ul class="horz">
<li class="name">
<select style="width: 195px; padding: 0px; margin: 0px;" disabled="disabled">
<option value=""></option>
<option value="0">0</option>
</select>
</li>
<li class="quantity">
<select style="width: 50px; padding: 0px; margin: 0px;" disabled="disabled">
<option value=""></option>
<option value="0">0</option>
</select>
</li>
</ul>
</li>
</ul>
</div>
</code></pre>
<p></p>
<p>The reason the code has the drop down as being disabled is because it's dynamic, the surrounding HTML is the same except for having options to choose from and no longer being disabled.</p>
<p>CSS</p>
<pre><code>div#byitem ul.horz li.name {
background:transparent none repeat scroll 0 0;
display:block;
font-size:11px;
font-weight:bold;
width:195px;
}
div#byitem ul.horz {
background:transparent none repeat scroll 0 0;
clear:left;
list-style-type:none;
margin:0;
padding:0;
}
div#byitem ul.vert li {
background:transparent none repeat scroll 0 0;
height:14px;
margin:0;
padding:0;
}
div#byitem ul.vert {
background:transparent none repeat scroll 0 0;
list-style-type:none;
margin:0;
padding:0;
width:540px;
}
element.style {
margin-bottom:0;
margin-left:0;
margin-right:0;
margin-top:0;
padding-bottom:0;
padding-left:0;
padding-right:0;
padding-top:0;
width:195px;
}
#content form select {
margin:0 0 4px 4px;
z-index:1;
}
html, body, div, p, form, input, select, textarea, fieldset {
-x-system-font:none;
color:#333333;
font-family:Arial,Helvetica,Verdana,sans-serif;
font-size:11px;
font-size-adjust:none;
font-stretch:normal;
font-style:normal;
font-variant:normal;
font-weight:normal;
line-height:15px;
}
* {
margin:0;
padding:0;
}
</code></pre>
<p>Thanks for any suggestions.</p>
<h1>Edit</h1>
<p>I've added the CSS for the divs that the drop downs are contained in. Also changing the line height doesn't make a difference. The only difference between the two drop downs (Item and Quantity) is the width. Changing the width on Item doesn't make a difference.</p>
<p>Took out the Add another item link as that was suspected to be a problem no change. Also I am doing my development in Firefox I just posted the screenshot from Safari.</p>
http://stackoverflow.com/questions/392476/good-php-hosting-options/397101#3971011Answer by jtyost2 for Good PHP hosting options?jtyost22008-12-29T03:55:31Z2008-12-29T03:55:31Z<p><a href="http://www.mediatemple.net/" rel="nofollow" title="Media Temple">MediaTemple</a> is also really, like really nice.</p>
http://stackoverflow.com/questions/375320/drop-down-box-not-fully-displayed-all-browsers/375444#3754440Answer by jtyost2 for Drop Down Box Not Fully Displayed (All Browsers)jtyost22008-12-17T17:59:29Z2008-12-17T17:59:29Z<p>Thanks for the idea @EndangeredMassa, but that doesn't work. The key also is that the second drop down dose work (same styles applied except for width). And changing the width doesn't help.</p>
http://stackoverflow.com/questions/347821/do-programmers-read-books-or-is-the-book-industry-dead/347828#3478283Answer by jtyost2 for Do programmers read books? Or is the book industry dead?jtyost22008-12-07T17:52:20Z2008-12-07T17:52:20Z<p>I personally still read books and I will keep reading books for a good long while. Blogs, MSDN, etc are great but to really get in depth and a wide variety of information nothing beats a book. Also some books are required reading for a programmer (Code Complete, etc).</p>
http://stackoverflow.com/questions/347237/what-are-some-blogs-that-discuss-smart-software-design/347251#3472511Answer by jtyost2 for What are some blogs that discuss smart software design?jtyost22008-12-07T04:54:41Z2008-12-07T04:54:41Z<p>Some of my personal favorite resources on both design and development include:</p>
<ol>
<li><a href="http://www.smashingmagazine.com/" rel="nofollow">Smashing Magazine</a></li>
<li><a href="http://www.alistapart.com/" rel="nofollow">A List Apart</a></li>
<li><a href="http://www.37signals.com/svn/" rel="nofollow">Signal Vs. Noise</a></li>
<li><a href="http://www.webresourcesdepot.com/" rel="nofollow">Web Resources Depot</a></li>
</ol>
http://stackoverflow.com/questions/347067/when-if-ever-should-you-use-a-back-to-top-link/347148#3471480Answer by jtyost2 for When, if ever, should you use a "back to top" link?jtyost22008-12-07T02:53:01Z2008-12-07T02:53:01Z<p>Limit Back to top links for pages that are longer than say two windows at 1024x768 or a list of contents, faq, etc. The key though is keep them out of the way but visible enough so that the user can see and use them. Smashing Magazine has a really good article regarding this feature/topic: <a href="http://www.smashingmagazine.com/2008/11/27/short-story-about-top-links/" rel="nofollow">http://www.smashingmagazine.com/2008/11/27/short-story-about-top-links/</a></p>
http://stackoverflow.com/questions/314134/webapp-development-tools-for-blackberry/346648#3466480Answer by jtyost2 for Webapp development tools for Blackberryjtyost22008-12-06T19:30:37Z2008-12-06T19:30:37Z<p>The Blackberry Applications are developed in Java and RIM provides the needed tools and simulators here: <a href="http://na.blackberry.com/eng/developers/resources/devtools.jsp" rel="nofollow" title="RIM Development Tools">http://na.blackberry.com/eng/developers/resources/devtools.jsp</a></p>
http://stackoverflow.com/questions/345051/php-and-sql-server-debugging/345606#3456060Answer by jtyost2 for PHP and SQL Server debuggingjtyost22008-12-06T00:19:04Z2008-12-06T00:19:04Z<p>I would check your settings for the PHP MSSQL extension, I once had Security enabled and needed it off to access a particular MSSQL server.</p>
http://stackoverflow.com/questions/342438/keep-track-of-php-code/342464#3424642Answer by jtyost2 for Keep Track of php codejtyost22008-12-04T23:39:27Z2008-12-04T23:39:27Z<p>You can't examine PHP code in the browser as it executes server side and then simply displays the output to the browser. You have to manually add in the ability to see what occus in the code, via echo statements or possibly logging the information.</p>
http://stackoverflow.com/questions/5025/locking-a-sql-server-database-with-php/342331#3423310Answer by jtyost2 for Locking a SQL Server Database with PHPjtyost22008-12-04T22:29:56Z2008-12-04T22:29:56Z<p>I never was able to solve the problem, however what I wound up doing was switching to MySQL and using a transactional level query here. This was not the main or even a primary reason to switch. I had been having problems with MSSQL and it allowed me to have our CMS and various other tools all running on the same database. Previous we had a MSSQL and a MySQL database running to run our site. The port was a bit on the time consuming however in the long run I feel it will work much better for the site and the business.</p>
http://stackoverflow.com/questions/326256/what-is-the-best-software-project-management-book/327914#3279146Answer by jtyost2 for What is the best software project management book?jtyost22008-11-29T19:42:07Z2008-11-29T19:42:07Z<p><a href="http://gettingreal.37signals.com/" rel="nofollow" title="Getting Real">37Signals' Getting Real</a> is a great book covering both starting a project to seeing the project through. Doesn't deal too much with the people side of software, instead focusing on making the project the best possible project.</p>
http://stackoverflow.com/questions/327863/is-it-a-good-idea-to-code-my-own-blog-engine-beginner/327892#3278920Answer by jtyost2 for Is it a good idea to code my own blog engine (beginner)?jtyost22008-11-29T19:29:49Z2008-11-29T19:29:49Z<p>I would more recommend writing an application that you feel would be useful yourself, a blog engine could be one of those, or something to keep track of the classes you've taken also might work. DO something that's interesting and that if you want to expand it you can. That way you can pick up more stuff as you move along. A blog engine seems just a bit too large though valuable.</p>
http://stackoverflow.com/questions/29357/security-for-voting-application/1091088#1091088Comment by jtyost2 on Security For Voting Applicationjtyost22009-07-08T05:05:48Z2009-07-08T05:05:48ZI am, the question was more of general guidelines/practices.http://stackoverflow.com/questions/1022607/which-php-cms-do-you-recommend-for-a-website/1022645#1022645Comment by jtyost2 on Which PHP CMS do you recommend for a website?jtyost22009-06-21T18:07:22Z2009-06-21T18:07:22ZSecond on Joomla.http://stackoverflow.com/questions/1019857/what-is-a-good-response-to-best-viewed-in-x/1019890#1019890Comment by jtyost2 on What is a Good Response to "Best Viewed in x"?jtyost22009-06-20T08:47:36Z2009-06-20T08:47:36ZNot marked as the answer, because I was asking in regards to any browser not just Firefox. That being said it was a very good answer and I upvoted it.http://stackoverflow.com/questions/1019857/what-is-a-good-response-to-best-viewed-in-x/1019916#1019916Comment by jtyost2 on What is a Good Response to "Best Viewed in x"?jtyost22009-06-20T08:46:55Z2009-06-20T08:46:55ZMarked as the answer, because I was asking in regards to any browser not just Firefox.http://stackoverflow.com/questions/1019857/what-is-a-good-response-to-best-viewed-in-x/1019898#1019898Comment by jtyost2 on What is a Good Response to "Best Viewed in x"?jtyost22009-06-19T20:37:02Z2009-06-19T20:37:02ZSorry should say "targeting students and not staff", my mistake.http://stackoverflow.com/questions/1019857/what-is-a-good-response-to-best-viewed-in-x/1019898#1019898Comment by jtyost2 on What is a Good Response to "Best Viewed in x"?jtyost22009-06-19T20:34:34Z2009-06-19T20:34:34ZI am a part time web developer and even used to work for this particular university as a web developer, although in a different department. While a large part of the university staff uses IE, a large percentage of the students are using FF (site was workable in 3.0 but defiantly broken) and Webkit browsers. The site is also specifically targeting students and the staff.http://stackoverflow.com/questions/1019857/what-is-a-good-response-to-best-viewed-in-x/1019890#1019890Comment by jtyost2 on What is a Good Response to "Best Viewed in x"?jtyost22009-06-19T20:31:12Z2009-06-19T20:31:12ZI did respond to the webmaster with both the web browser stats you cited along with the accessiabilty and identity guidelines issues.http://stackoverflow.com/questions/844719/accessing-cookies-hopefully-in-javascript/844727#844727Comment by jtyost2 on accessing cookies, hopefully in javascriptjtyost22009-05-10T05:55:14Z2009-05-10T05:55:14ZThat is correct you can not access cookies outside of the current domain.http://stackoverflow.com/questions/764356/what-is-the-difference-between-an-f5-refresh-of-a-page-and-pasting-that-url-in/764361#764361Comment by jtyost2 on What is the difference between an F5 (refresh) of a page and pasting that URL in a new window?jtyost22009-04-19T19:35:37Z2009-04-19T19:35:37ZYou are right, moment of craziness apparently.http://stackoverflow.com/questions/312805/is-there-a-good-web-based-project-management-app-with-scheduling/336351#336351Comment by jtyost2 on Is there a good web-based project management app with scheduling?jtyost22009-03-07T15:42:48Z2009-03-07T15:42:48ZWhen the project wanted to move to a commercial plan they started up the ProjectPier open source project giving it the current code base of ActiveCollab.http://stackoverflow.com/questions/558912/how-can-i-monitor-users-clicking-on-links-via-javascript/558919#558919Comment by jtyost2 on How can I monitor users clicking on links via Javascript?jtyost22009-02-17T22:08:28Z2009-02-17T22:08:28ZAnalytics has the ability to track all links clicked including AJAX links.http://stackoverflow.com/questions/558719/select-variable-number-of-random-records-from-mysqlComment by jtyost2 on Select variable number of random records from MySQLjtyost22009-02-17T21:47:20Z2009-02-17T21:47:20ZAgree with JPunyon regarding pre-optimizing and given there are at most 500 records, how much faster is a different solution going to be and is the current function that slow?http://stackoverflow.com/questions/526941/why-should-i-use-conditional-stylesheets/526949#526949Comment by jtyost2 on Why should I use conditional stylesheets?jtyost22009-02-09T02:17:21Z2009-02-09T02:17:21ZAnd how is it complex? I don't see anything inherently complex about it, unless you mean how to follow it.http://stackoverflow.com/questions/526941/why-should-i-use-conditional-stylesheets/526949#526949Comment by jtyost2 on Why should I use conditional stylesheets?jtyost22009-02-09T02:15:42Z2009-02-09T02:15:42ZYeah and ugly, I'm not so sure I would be toting that as an example of a site that doesn't have conditional CSS.http://stackoverflow.com/questions/526312/when-should-i-use-final/526322#526322Comment by jtyost2 on When should I use "final"?jtyost22009-02-08T21:16:03Z2009-02-08T21:16:03Z@Pies Yeah, exactly.