User Scott Evernden - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T22:02:27Zhttp://stackoverflow.com/feeds/user/11397http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1811885/syntax-error-unexpected/1811890#18118900Answer by Scott Evernden for syntax error, unexpected '<' Scott Evernden2009-11-28T07:35:32Z2009-11-28T07:35:32Z<p>you have html code inside your PHP block</p>
<p>do this:</p>
<pre><code><?php ?>
//Submitting to ourselves via POST
<form method="post" action="<?php echo $PHP_SELF; ?>"/>
</code></pre>
<p>or just remove the first line entirely</p>
http://stackoverflow.com/questions/1811803/jquery-remove-item-from-middle-of-list-then-refresh-list/1811876#18118761Answer by Scott Evernden for jQuery, remove item from middle of list, then refresh list?Scott Evernden2009-11-28T07:28:04Z2009-11-28T07:28:04Z<p><code>$id</code> holds a simple value, not a wrapped set? .. well, ...ok...</p>
<p>do it like this</p>
<pre><code>$('#city_' + $id).parent().remove();
</code></pre>
<p>or </p>
<pre><code>$('div:has(#city_' + $id + ')').remove();
</code></pre>
<p>you don't need to use <code>$list</code> or <code>$().find()</code> if your html is properly formed w/ unique ids</p>
http://stackoverflow.com/questions/1811034/jquery-snapped-scrolling-possible/1811047#18110471Answer by Scott Evernden for jQuery: snapped scrolling - possible?Scott Evernden2009-11-27T23:54:35Z2009-11-27T23:54:35Z<p>the answer is 'yes' .. you can adjust .scrollTop and make it be anything you want in response to an onscroll event</p>
<p>read about scrollTop <a href="https://developer.mozilla.org/En/DOM/Element.scrollTop" rel="nofollow">here</a></p>
<p>read about the scroll event <a href="http://docs.jquery.com/Events/scroll" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/1811001/jquery-complex-selector-with-mid-wild-card/1811007#18110072Answer by Scott Evernden for jQuery Complex selector with mid-wild card?Scott Evernden2009-11-27T23:35:06Z2009-11-27T23:43:37Z<pre><code>$('input[id$=_I]')
</code></pre>
<p>read <a href="http://docs.jquery.com/Selectors/attributeEndsWith#attributevalue" rel="nofollow">here</a></p>
<p>EDIT:
or maybe you could do</p>
<pre><code>$('input[id^=menu_popSearch]').not('input[id$=_S]')
</code></pre>
<p>EDIT 2:
okay as you keep refining the question I'll try to keep up</p>
<pre><code>$('input[id^=menu_popSearch][id$=_I]')
</code></pre>
<p>read <a href="http://docs.jquery.com/Selectors/attributeMultiple#attributeFilter1attributeFilter2attributeFilterN" rel="nofollow">here</a> now</p>
http://stackoverflow.com/questions/1810904/ajax-controlled-multiple-select-box-strategy/1810988#18109880Answer by Scott Evernden for AJAX Controlled Multiple Select Box StrategyScott Evernden2009-11-27T23:28:11Z2009-11-27T23:28:11Z<p>multiple select listbox</p>
<pre><code> <select id="choices" multiple="multiple" .. >
</code></pre>
<p>If you were using jQuery you could do something like:</p>
<pre><code> $("#choices").change(function() {
var choices = {};
$("#choices option:selected").each(function() {
choices[this.id] = $(this).val();
});
$.post("http://example.com/choice_handler.php", choices, function(content) {
$("#textarea").val(content);
});
});
</code></pre>
<p>choice___handler.php would look at $_POST to retrieve the id/value pairs and produce content that would be returned and then assgned as the value of a textarea.</p>
<p>Note: i haven't tested/debugged any of this - just some code sketching here</p>
http://stackoverflow.com/questions/1804068/action-after-a-delay/1804110#18041100Answer by Scott Evernden for action after a delayScott Evernden2009-11-26T14:50:04Z2009-11-26T14:50:04Z<p>first argument to <a href="https://developer.mozilla.org/en/DOM/window.setTimeout" rel="nofollow">setTimeout()</a> is a function or a string of code, so try:</p>
<pre><code>setTimeout('$("sildeToBuyContent").setStyle("overflow","visible")', 1000);
</code></pre>
http://stackoverflow.com/questions/1804007/multiple-callback-on-get/1804055#18040550Answer by Scott Evernden for Multiple callback on $.getScott Evernden2009-11-26T14:41:10Z2009-11-26T14:41:10Z<p>is there a reason you aren't using $().load() ?</p>
<pre><code>$(document).ready(function(){
$('#realisations').load("realisations.shtml", function() {
$(".toexpand").hide();
});
});
</code></pre>
http://stackoverflow.com/questions/1792610/adding-fade-to-jquery-image-replacement/1792675#17926750Answer by Scott Evernden for adding fade to jquery image replacementScott Evernden2009-11-24T20:21:21Z2009-11-25T03:29:28Z<pre><code>$('#the_image).hover(function() {
$(this).fadeOut(function() {
$(this).attr('src', $(this).attr('src').replace(".png", "_o.png")).fadeIn();
});
}, function {
$(this).fadeOut(function() {
$(this).attr('src', $(this).attr('src').replace("_o.png", ".png")).fadeIn();
});
});
</code></pre>
http://stackoverflow.com/questions/1787240/how-to-emulate-the-look-of-an-off-white-sheet-of-paper-on-a-computer-screen/1792627#17926272Answer by Scott Evernden for How to emulate the look of an off-white sheet of paper on a computer screenScott Evernden2009-11-24T20:12:14Z2009-11-24T20:12:14Z<p>i would load the body with a texture .. </p>
<pre><code>body {
background-image: url(path-to-texture.png);
background-color: predominent color of that texture;
}
</code></pre>
<p>you can google for '<a href="http://www.google.com/search?q=paper+texture" rel="nofollow">paper texture</a>' and come up with dozens</p>
http://stackoverflow.com/questions/1779013/check-if-string-contains-only-digits/1779019#17790196Answer by Scott Evernden for Check if string contains only digitsScott Evernden2009-11-22T15:26:24Z2009-11-22T15:26:24Z<p>how about</p>
<pre><code>var isnum = /^\d+$/.test(val);
</code></pre>
http://stackoverflow.com/questions/1777308/what-does-this-code-snippet-do/1777364#17773641Answer by Scott Evernden for What does this code-snippet do?Scott Evernden2009-11-22T00:48:37Z2009-11-22T01:07:45Z<p>It's a prime number algorithm that needs a Trac ticket.</p>
http://stackoverflow.com/questions/1777357/css-rule-based-on-content/1777373#17773731Answer by Scott Evernden for CSS rule based on contentScott Evernden2009-11-22T00:51:47Z2009-11-22T00:51:47Z<p>yes there is a <code>:contains</code> selector in CSS3.</p>
<pre><code>li:contains("special"){text-style: italic;}
</code></pre>
<p>it is mentioned about 1/2 down this page <a href="http://www.xml.com/pub/a/2003/06/18/css3-selectors.html?page=2" rel="nofollow">here</a></p>
<p>This is <a href="http://docs.jquery.com/Selectors/contains#text" rel="nofollow">something you can also do with jQuery</a> too ...</p>
http://stackoverflow.com/questions/1777089/measuring-online-time-on-website/1777213#17772130Answer by Scott Evernden for Measuring online time on websiteScott Evernden2009-11-21T23:54:23Z2009-11-21T23:54:23Z<p>google analytics includes a very powerful <a href="http://code.google.com/apis/analytics/docs/tracking/eventTrackerGuide.html" rel="nofollow">event logging/tracking</a> mechanism you can customize and tap into get really good measurements of user behavior - I'd look into that</p>
http://stackoverflow.com/questions/1777101/php-check-to-see-if-a-string-matches-a-pattern/1777179#17771791Answer by Scott Evernden for PHP check to see if a string matches a patternScott Evernden2009-11-21T23:45:04Z2009-11-21T23:45:04Z<p>if you strictly want to match one or more whole words and not comma-separated phrases try:</p>
<pre><code> preg_match("^(?:\w+,)*\w+$", $input)
</code></pre>
http://stackoverflow.com/questions/1671995/php-cli-has-stopped-working4PHP -> CLI has stopped working.Scott Evernden2009-11-04T06:24:36Z2009-11-20T02:59:50Z
<p>I recently installed Windows 7 on my desktop and the following problem has begun occuring:</p>
<p>I regularly run some PHP scripts from the commandline that are now giving this error in a popup window:</p>
<pre><code>CLI has stopped working.
</code></pre>
<p>I cancel this and my script terminates. Not good...</p>
<p>I've googled around and tried most of the few ideas suggested but still i am plagued by this annoyance. Right now it appears to regularly occur when I do a file_get_contents() of a url pointing to an image file. Only happens when the url is http protocol, works fine for ftp files. It also happens spuriously doing other things as well.</p>
<p>This is PHP 5.3.0 as distributed in a xampp 1.7.2 .zip. All exe's and dll's have been unblocked by copying thru FAT32 and back.</p>
<p>hints from anyone who's cracked this would be most helpful.</p>
http://stackoverflow.com/questions/1766358/open-source-php-script-for-http-video-streaming/1766402#17664021Answer by Scott Evernden for Open Source PHP script for HTTP video streaming?Scott Evernden2009-11-19T20:47:33Z2009-11-19T20:47:33Z<p>would something like <a href="http://xmoov.com/" rel="nofollow">xmoov</a> work for you? it appears to have some means to allow you to get intimate with the video-stream, but I've not used it first hand</p>
http://stackoverflow.com/questions/1765628/could-you-show-me-a-site-where-ajax-driven-country-region-city-drop-down-list-is/1765735#17657350Answer by Scott Evernden for Could you show me a site where ajax-driven country-region-city drop down list is used? Scott Evernden2009-11-19T19:02:10Z2009-11-19T19:02:10Z<p><a href="http://www.ajaxdeveloper.ca/Examples.html" rel="nofollow">here's</a> a good example .. </p>
<p>Altho the demo seems to be slightly broken there's example code there that you can make work, I'll bet</p>
http://stackoverflow.com/questions/600438/css-to-hide-input-button-value-text4CSS to hide INPUT BUTTON value textScott Evernden2009-03-01T20:25:19Z2009-11-19T18:23:03Z
<p>I am currently styling an input type='button' element using something like:</p>
<pre><code>background-url: url(someimage); color: transparent; background-color: transparent;
</code></pre>
<p>-the point is i want the button to show as an image, and i want the value-text to NOT display on top of it. This works fine for Firefox as expected. However, on IE6 & IE7 i can still see the text.</p>
<p>I have tried all sorts of tricks to get the text to not display and still no joy. Has anyone got a solution to make IE behave?</p>
<p>(i am constrained to use type=button because this is a drupal form and its form api doesn't support image-type)</p>
http://stackoverflow.com/questions/1765373/highlighting-the-current-textbox-on-a-web-form/1765425#17654251Answer by Scott Evernden for Highlighting the "current" textbox on a web formScott Evernden2009-11-19T18:18:53Z2009-11-19T18:18:53Z<pre><code>$('textarea, input:text').focus(function() {
$(this).addClass('hilite');
}).blur(function() {
$(this).removeClass('hilite')
});
.hilite {
border: 2px solid gray;
}
</code></pre>
http://stackoverflow.com/questions/1765265/basic-question-in-foreach-in-php/1765327#17653270Answer by Scott Evernden for basic question in foreach in phpScott Evernden2009-11-19T18:05:41Z2009-11-19T18:05:41Z<p>perhaps <a href="http://php.net/manual/en/function.pathinfo.php" rel="nofollow">pathinfo()</a> will give you what you need</p>
<p>if that doesn't do it try</p>
<pre><code>$path = str_replace('\\', '/', $path)
</code></pre>
<p>first</p>
http://stackoverflow.com/questions/1764605/scrape-asin-from-amazon-url-using-javascript/1764959#17649590Answer by Scott Evernden for scrape ASIN from amazon URL using javascriptScott Evernden2009-11-19T17:11:35Z2009-11-19T17:11:35Z<p>something like this should work (not tested)</p>
<pre><code>var match = /\/dp\/(.*?)\/ref=amb_link/.exec(amazon_url);
var asin = match ? match[1] : '';
</code></pre>
http://stackoverflow.com/questions/1756584/position-an-injected-div-using-jquerys-load-function/1756634#17566340Answer by Scott Evernden for Position An Injected DIV Using JQuery's "Load" FunctionScott Evernden2009-11-18T15:05:58Z2009-11-18T15:05:58Z<p>try using <a href="http://docs.jquery.com/Events/live" rel="nofollow">$().live</a></p>
<pre><code> $j('div.quick-info').live('load', function() {
positionBoxCenter();
});
</code></pre>
<p>with jQuery 1.3.2
because <code>div.quick-info</code> doesn't exist at the time you try and bind <code>load</code></p>
<p>also FYI .. in general, <code>$('#load-content')</code> selects faster than <code>$('a#load-content')</code></p>
http://stackoverflow.com/questions/1752718/how-do-i-select-more-than-one-element-using-the-jquery-attribute-selector/1752724#17527242Answer by Scott Evernden for How do I select more than one element using the jQuery attribute selectorScott Evernden2009-11-17T23:56:57Z2009-11-17T23:56:57Z<pre><code>$('span[id$=Me]').add('input[id$=Me]')
</code></pre>
http://stackoverflow.com/questions/1750606/showing-hiding-a-div-based-on-one-or-more-checkbox-radiobox-selections/1750737#17507370Answer by Scott Evernden for Showing/Hiding a DIV based on one or more checkbox/radiobox selections?Scott Evernden2009-11-17T18:13:44Z2009-11-17T18:19:03Z<pre><code><span id='#options'>
Options:
<input type='radio' name='options' value='one'>One Year</input>
<input type='radio' name='options' value='two'>Two Years</input>
<input type='radio' name='options' value='three'>Three Years</input>
</span>
Output: "<span id='#output'></span>"
...
var labels = {
one: "Your computer is One Year Old",
two: "Your computer is Two Years Old",
three: "Your computer is Three Years Old"
};
$('#options :radio').click(function() {
$('#output).html(labels[$(this).val()]);
});
</code></pre>
http://stackoverflow.com/questions/1749496/first-jquery-script-simple-form-focus-any-problems/1749536#17495363Answer by Scott Evernden for First jQuery script, simple Form Focus, any problems?Scott Evernden2009-11-17T15:12:56Z2009-11-17T15:12:56Z<p>you don't need to test length. if the wrapped set is empty the focus function is called for nothing. if only #one or #two will exist, then the following works fine:</p>
<pre><code>$(function() { // shorthand for $(document).ready()
$('#one, #two').focus();
});
</code></pre>
http://stackoverflow.com/questions/1745704/jquery-populate-items-into-a-select-using-jquery-ajax-json-php/1745838#17458380Answer by Scott Evernden for jQuery populate items into a Select using jQuery ajax json, phpScott Evernden2009-11-17T00:32:15Z2009-11-17T00:32:15Z<p>you could also just use $().load() and have your PHP code generate the <code><option></code> tags</p>
<pre><code> $return = "";
while ($row = mysql_fetch_array($res)) {
$value = $row['value'];
$text = $row{'text'];
$return .= "<option value='$value'>$text</option>\n";
}
print $return;
}
</code></pre>
<p>...</p>
<pre><code>$('#select').load("<?=base_url()?>index.php/rubro/list_ajax/");
</code></pre>
http://stackoverflow.com/questions/1745757/how-to-limit-dom-interaction-to-an-element-and-its-children/1745771#17457711Answer by Scott Evernden for How to Limit DOM interaction to an element and its children?Scott Evernden2009-11-17T00:18:29Z2009-11-17T00:18:29Z<p>$() <a href="http://docs.jquery.com/Core/jQuery#expressioncontext" rel="nofollow">takes a 2nd parameter</a> which limits the search scope</p>
<pre><code>$(selector, context)
</code></pre>
<p>which is really the same as</p>
<pre><code>$(context).find(selector);
</code></pre>
http://stackoverflow.com/questions/1745644/using-show-hide-with-slide-effect-how-to-start-stop-sliding-at-an-offset/1745736#17457361Answer by Scott Evernden for Using show/hide with 'slide' effect, how to start/stop sliding at an offset?Scott Evernden2009-11-17T00:08:54Z2009-11-17T00:08:54Z<p>have you tried:</p>
<pre><code>var height = $('.my_menu').outerHeight() - 4; // show 4 pixels
$('.my_menu').hide('slide', {direction:'up', distance: height}, 200, function() {}, function() {});
</code></pre>
<p>(take a look at <a href="http://docs.jquery.com/UI/Effects/Slide#options" rel="nofollow">effects.slide.js</a>)</p>
http://stackoverflow.com/questions/1736954/debug-whats-wrong-with-q-lilast-remove/1736961#17369611Answer by Scott Evernden for Debug, what's wrong with "$('#q li:last').remove();"Scott Evernden2009-11-15T08:10:19Z2009-11-15T08:10:19Z<p>I usually set up event handlers after the DOM has been loaded. ie, place them all within a $(document).ready() handler to avoid problems</p>
<p>looks like you have set up 2 click handlers. one adds the li and the other removes it ?? both will fire on a single click</p>
http://stackoverflow.com/questions/1720528/what-is-the-best-argorithm-for-finding-the-closest-color-in-an-array-to-another-c/1720559#17205590Answer by Scott Evernden for What is the best argorithm for finding the closest color in an array to another color?Scott Evernden2009-11-12T07:37:57Z2009-11-12T07:37:57Z<p>I would think that if you treat colors as RGB coordinates in 3-space and compute distance from sampled to known values, you could determine the closest match. I probably would also try scaling R G B according to eye sensitivity (ie, Y = 0.3*R + 0.59*G + 0.11*B) you'd achieve the best result</p>
http://stackoverflow.com/questions/1811803/jquery-remove-item-from-middle-of-list-then-refresh-list/1811876#1811876Comment by Scott Evernden on jQuery, remove item from middle of list, then refresh list?Scott Evernden2009-11-29T03:35:32Z2009-11-29T03:35:32ZPlease refer to <a href="http://www.artzstudio.com/2009/04/jquery-performance-rules/" rel="nofollow">artzstudio.com/2009/04/…</a>http://stackoverflow.com/questions/1811803/jquery-remove-item-from-middle-of-list-then-refresh-list/1811876#1811876Comment by Scott Evernden on jQuery, remove item from middle of list, then refresh list?Scott Evernden2009-11-29T03:34:01Z2009-11-29T03:34:01Zwell I hate to break it to you, but your opinion is wrong. A bare #id without context is THE FASTEST selector that jQuery offers since it maps directly into getElementById() - there is <i>no traversing</i> when you supply an #id. By supply $last as a context you are actually slowing the selector down.http://stackoverflow.com/questions/1811034/jquery-snapped-scrolling-possible/1811047#1811047Comment by Scott Evernden on jQuery: snapped scrolling - possible?Scott Evernden2009-11-28T20:49:15Z2009-11-28T20:49:15ZIf I was doing this, I'd let the table scroll the way it wants but after the button is released I would $().animate() scrolltop up or down to the whole-row position you wanthttp://stackoverflow.com/questions/1794138/creating-javascript-object-from-jquery-objectComment by Scott Evernden on Creating Javascript object from JQuery objectScott Evernden2009-11-25T03:35:28Z2009-11-25T03:35:28Z$(selectedElement).innerText is invalid code .. $(selectedElement) is a wrapped set/array of objects .. innerText is not a property of that .. use $(selectedElement).text()http://stackoverflow.com/questions/1792588/replace-symbols-with-jqueryComment by Scott Evernden on Replace Symbols with jQueryScott Evernden2009-11-24T20:08:49Z2009-11-24T20:08:49Zcan you maybe give an example because there are a few interpretations of your question / not sure if you mean the <body> tag itself or the entire body innerHTMLhttp://stackoverflow.com/questions/1780086/as3-actionscriptingComment by Scott Evernden on AS3 actionscripting Scott Evernden2009-11-22T21:42:20Z2009-11-22T21:42:20Zkinda confusing what is where, what you have control of, and what you don't .. are you in control of the flash code <i>only</i> ??http://stackoverflow.com/questions/1777308/what-does-this-code-snippet-do/1777346#1777346Comment by Scott Evernden on What does this code-snippet do?Scott Evernden2009-11-22T01:34:12Z2009-11-22T01:34:12Zhaha .. depends on how you define prime!http://stackoverflow.com/questions/1777357/css-rule-based-on-content/1777373#1777373Comment by Scott Evernden on CSS rule based on contentScott Evernden2009-11-22T01:19:08Z2009-11-22T01:19:08Zah yes i didn't catch that nuance .. i can see why it makes sense however (maybe) . thanks for spotting thathttp://stackoverflow.com/questions/1777308/what-does-this-code-snippet-do/1777346#1777346Comment by Scott Evernden on What does this code-snippet do?Scott Evernden2009-11-22T01:17:18Z2009-11-22T01:17:18Zi think this is the best answerhttp://stackoverflow.com/questions/1777308/what-does-this-code-snippet-do/1777364#1777364Comment by Scott Evernden on What does this code-snippet do?Scott Evernden2009-11-22T01:14:45Z2009-11-22T01:14:45Zwhat i mean is its buggy -- if 2 characters were changed [ "for(int i=3;i<sqrt(n)+0.5;i+=2)" was edited to "for(int i=2;i<sqrt(n)+0.5;i+=1)" ] it would correctly identify prime numbershttp://stackoverflow.com/questions/1777392/good-books-on-software-engineering-for-web-appsComment by Scott Evernden on Good books on Software Engineering for web apps?Scott Evernden2009-11-22T01:07:47Z2009-11-22T01:07:47Zyou need to refine what you want to learn .. just saying 'web apps' is a huge wide endless topic. includes .NET, ruby, java, javascript, google friends, facebook connect, C#, canvas, html, jQuery, css, mySQL, postgreql ... etc etc ETC!.... about 30% of the tags listed on SO I would venture ..
you want some sort of global overview ??http://stackoverflow.com/questions/1777220/jquery-hover-problem-hover-triggers-on-mouse-moveComment by Scott Evernden on jQuery Hover Problem - Hover Triggers on Mouse MoveScott Evernden2009-11-22T00:03:02Z2009-11-22T00:03:02Zwhat browser?. Seems to work fine in Chrome, FF3 and IE8 (tho IE8 needs a look at)http://stackoverflow.com/questions/1774334/what-site-is-a-good-example-of-jqueryComment by Scott Evernden on What Site is a Good Example of JQueryScott Evernden2009-11-21T02:58:59Z2009-11-21T02:58:59Zthe best way to learn jQuery is probably NOT by looking at a random web sites and trying to figure out what's going on. most sites do not use most of jQ's features . better to get some tutorials and books and learn the foundation - how it's built and works .. in fact . i daresay .. one great way to learn jQ is to carefully and purposefully work thru its implementation , jQ's source code ! http://stackoverflow.com/questions/1765595/javascript-closure-variable-scope-question-i-know-it-works-but-whyComment by Scott Evernden on Javascript closure / variable scope question - I know it works, but why?Scott Evernden2009-11-19T18:43:45Z2009-11-19T18:43:45Zdup of <a href="http://stackoverflow.com/questions/111102/how-does-a-javascript-closure-work" rel="nofollow" title="how does a javascript closure work">stackoverflow.com/questions/111102/…</a> and othershttp://stackoverflow.com/questions/1764778/retrieving-get-variable-in-jqueryComment by Scott Evernden on retrieving $_GET variable in jqueryScott Evernden2009-11-19T16:56:08Z2009-11-19T16:56:08Z"I have a div, "currLeader" in topic.php into which I load another page, getCurrLeader.php. " - where does this happen? on server or back in the browser?