User micahwittman - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T08:32:50Zhttp://stackoverflow.com/feeds/user/11181http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1929704/css-tool-to-calculate-how-many-in-bytes-inline-css-in-html/1929819#19298190Answer by micahwittman for Css tool, to calculate how many (in bytes) inline css in htmlmicahwittman2009-12-18T18:06:26Z2009-12-18T18:06:26Z<p>You can run the following bit of JS in the Firebug Console for the size in bytes of all the <a href="http://stackoverflow.com/questions/1733992/how-to-get-the-css-with-in-inline-styles-using-jquery/1734123#1734123">effective inline style rules as CSS</a>.</p>
<p>(unhook all linked stylesheets, load page and run this JS to effectively get the only-declared-inline CSS size).</p>
<pre><code>var styleText = '';
$('*').each(function(){
styleText += this.style.cssText;
});
var styleTextLengthInBytes = encodeURIComponent(styleText).replace(/%../g, 'x').length
console.log(styleTextLengthInBytes);
</code></pre>
<p>(conversion to bytes handles UTF-8 correctly, courtesy of <a href="http://dt.in.th/2008-09-16.string-length-in-bytes.html" rel="nofollow">dt.in.th/2008-09-16.string-length-in-bytes</a></p>
<p><hr></p>
<p>Variation - exclude SPANs and Ps, and count everything else:</p>
<pre><code>var styleText = '';
$('* :not(span,p)').each(function(){
styleText += this.style.cssText;
});
var styleTextLengthInBytes = encodeURIComponent(styleText).replace(/%../g, 'x').length
console.log(styleTextLengthInBytes);
</code></pre>
http://stackoverflow.com/questions/1929562/jquery-tools-overflow-images-from-input-box/1929667#19296672Answer by micahwittman for JQuery tools, overflow images from input boxmicahwittman2009-12-18T17:37:36Z2009-12-18T17:37:36Z<p>See the <a href="http://www.w3.org/TR/html4/types.html#h-6.2" rel="nofollow">web standard for element ID syntax</a></p>
<blockquote>
<p><em><code>ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and periods (".").</code></em></p>
</blockquote>
<p>So, to be standards compliant, change markup to something like:</p>
<pre><code><a id="p11" href="data/images/011.jpg"></a>
<a id="p12" href="data/images/012.jpg"></a>
<a id="p13" href="data/images/013.jpg"></a>
<a id="p14" href="data/images/014.jpg"></a>
</code></pre>
<p>Javascript:</p>
<pre><code>$("#searchButton").click(function(){ //set click event of search button
var piclink_num = $("#searchBox").val(); //get user input which is expected to be numeric part of link ID
$("#p" + piclink_num).trigger('click'); //trigger click event of intended link
});
</code></pre>
http://stackoverflow.com/questions/1926481/how-to-iterate-by-month-between-two-specified-dates/1926582#19265821Answer by micahwittman for How to iterate, by month, between two specified datesmicahwittman2009-12-18T06:02:19Z2009-12-18T06:02:19Z<p>I don't know the schema of your stored metrics, so here's a generic example:</p>
<p><strong>Select total pageviews per month from Aug 1 thru Nov 30 2009</strong></p>
<p>The code for MySQL:</p>
<pre><code>SELECT DATE_FORMAT(s.date, '%Y-%m') AS year_month , SUM( s.pageviews ) AS s.pageviews_total
FROM statistics s
WHERE s.date BETWEEN '2009-08-01' AND '2009-11-30'
GROUP BY DATE_FORMAT(s.date, '%Y-%m')
ORDER BY DATE_FORMAT(s.date, '%Y-%m')
</code></pre>
<p>Having that aggregated table output may be enough for you. If not, you can loop through it with PHP and perform other manipulations.</p>
http://stackoverflow.com/questions/1926348/loading-my-greasemonkey-script-after-another-gm-script-loads/1926398#19263981Answer by micahwittman for Loading my Greasemonkey script after another GM Script Loadsmicahwittman2009-12-18T05:11:10Z2009-12-18T05:11:10Z<p>S.Mark <a href="http://stackoverflow.com/questions/1926348/loading-my-greasemonkey-script-after-another-gm-script-loads/1926353#1926353">described</a> how to manage the order of execution in the Greasemonkey script management interface, which is part of it. But it can't be guaranteed that Script 1 will finish effecting all its operations on the DOM before Script 2 begins.</p>
<p>If Script 2 is dependent on the actions of Script 1, that has to be handled.</p>
<p>One approach: Have Script 2 check the DOM for some state changed by Script 1 (which signals Script 1 effects have completed). In Script 2 stay in a recursive loop with window.setTimeout() and routinely check for the signalling state, then break out and begin the main work of Script 2 once the condition has been met.</p>
<p>Another approach altogether: combine the two scripts into one, and order the blocks of code appropriately.</p>
http://stackoverflow.com/questions/1925377/need-the-css-a-tag-is-not-cooperating/1925386#19253862Answer by micahwittman for Need the CSS a.tag is not cooperatingmicahwittman2009-12-17T23:45:57Z2009-12-17T23:45:57Z<p>You need to apply the styles of the CSS pseudo-class directly to the A tags themselves. As you show, they are descendants of the UL LI tags in your structure, so that's how you can select them.</p>
<pre><code>ul.col1 li a:link {color:#FFF} /* unvisited link */
ul.col1 li a:visited {color:#00F} /* visited link */
ul.col1 li a:hover {color:#FF0} /* mouse over link */
ul.col1 li a:active {color:#00F} /* selected link */
</code></pre>
http://stackoverflow.com/questions/1924723/using-jquery-to-add-remove-a-class-based-on-body-id/1924781#19247810Answer by micahwittman for Using Jquery to add/remove a class based on body Idmicahwittman2009-12-17T21:40:22Z2009-12-17T23:37:49Z<p>Building on <a href="http://stackoverflow.com/questions/1924723/using-jquery-to-add-remove-a-class-based-on-body-id/1924754#1924754">http://stackoverflow.com/questions/1924723/using-jquery-to-add-remove-a-class-based-on-body-id/1924754#1924754</a>: </p>
<pre><code>var bodyID = $('body').attr('id');
$("a[href$='" + bodyID + ".php']").toggleClass('current-selected'); //add/remove
</code></pre>
<p>OR</p>
<pre><code>$("a[href$='" + bodyID + ".php']").addClass('current-selected'); //add
</code></pre>
<p>Instead of "=", we use "$=" (referring to "href$=") syntax which will matched the end of the string, so both "index.php" and "/index.php" will be matched by "index.php".</p>
<p>To implement it on your site, you need to run the above code inside the jQuery ready function so all the HTML below the script block loads before the Javascript performs actions on it:</p>
<p>EDIT: This works for all main/top navigation links for your site (string for matching the href is the last path segment of the URL):</p>
<pre><code><script type="text/javascript">
$(document).ready(function(){
page = window.location.pathname.substring(1).replace(/\//g,'');
$("a[href*='" + page + "']").addClass('current-selected');
});
</script>
</code></pre>
http://stackoverflow.com/questions/1923394/use-soundex-word-by-word-on-sql-server/1923602#19236020Answer by micahwittman for Use SOUNDEX() word by word on SQL Servermicahwittman2009-12-17T18:17:10Z2009-12-17T18:17:10Z<p>If you have to do it all in the RDBMS, a <a href="http://stackoverflow.com/questions/2647/split-string-in-sql">UDF</a> would be the best if it's an option.</p>
<p>Otherwise, you could use this technique to at least soundex the first four words individually using <a href="http://msdn.microsoft.com/en-us/library/ms188006.aspx" rel="nofollow">PARSENAME</a>:</p>
<p>From <a href="http://stackoverflow.com/questions/2647/split-string-in-sql/2685#2685">http://stackoverflow.com/questions/2647/split-string-in-sql/2685#2685</a>:</p>
<pre><code>PARSENAME(REPLACE('12 inches laptop computer', ' ', '.'), 1) --return computer
PARSENAME(REPLACE('12 inches laptop computer', ' ', '.'), 2) --return laptop
...
</code></pre>
<p>However: using PARSENAME in this way is a hack and a serious limitation is it only works for a max of 4 parts. If there are 5 or more words PARSENAME will return NULL, so you have to check for that with a conditional and degrade gracefully.</p>
<p>Here's a simplified example (again, without the NULL checks)</p>
<pre><code>SELECT *
FROM Products
WHERE SOUNDEX(search_input) = SOUNDEX(PARSENAME(REPLACE(Name, ' ', '.'), 4))
OR SOUNDEX(search_input) = SOUNDEX(PARSENAME(REPLACE(Name, ' ', '.'), 3))
OR SOUNDEX(search_input) = SOUNDEX(PARSENAME(REPLACE(Name, ' ', '.'), 2))
OR SOUNDEX(search_input) = SOUNDEX(PARSENAME(REPLACE(Name, ' ', '.'), 1))
</code></pre>
http://stackoverflow.com/questions/1923278/best-way-to-add-metadata-to-html-elements/1923314#19233141Answer by micahwittman for Best way to add metadata to HTML elementsmicahwittman2009-12-17T17:28:54Z2009-12-17T17:51:48Z<p>Look at the <a href="http://stackoverflow.com/questions/1794951/what-does-jquery-data-function-do">jQuery .data()</a> function.</p>
http://stackoverflow.com/questions/1923327/jquery-validation-with-select-and-text-input/1923381#19233810Answer by micahwittman for JQuery Validation with Select and Text Inputmicahwittman2009-12-17T17:39:45Z2009-12-17T17:39:45Z<p>This SO Answer may help: <a href="http://stackoverflow.com/questions/619816/jquery-validation-plugin-in-asp-net-web-forms/619950#619950">http://stackoverflow.com/questions/619816/jquery-validation-plugin-in-asp-net-web-forms/619950#619950</a></p>
http://stackoverflow.com/questions/1923161/jquery-syntax-issue/1923261#19232612Answer by micahwittman for jQuery syntax issuemicahwittman2009-12-17T17:20:00Z2009-12-17T17:20:00Z<p>Firefox (3.5.6) indeed does throw a Warning (<strong><em>if you are not seeing it in Firebug, it's because you do not have 'Show CSS Errors' enabled</em></strong> - see Firebug Console tab).</p>
<p>Firefox is, in a false positive way, parsing the jQuery selector syntax as non-compliant CSS. It is safe to ignore this FF warning (it's not an error remember).</p>
http://stackoverflow.com/questions/1919771/error-getting-jquery-blur-to-work-on-element/1920019#19200192Answer by micahwittman for Error Getting Jquery Blur to Work on Element micahwittman2009-12-17T07:20:11Z2009-12-17T07:20:11Z<p>Looks like the problem is you are selecting the DIV element that wraps the input. The blur events you want are on the INPUT elements.</p>
<p>Example of one way to select the INPUT within the DIV:</p>
<pre><code>$('#donor-credit-card-number input').blur(function(){
//etc...
});
</code></pre>
http://stackoverflow.com/questions/1919734/how-to-parse-a-page-that-doesnot-show-any-data-in-its-source-code/1919763#19197630Answer by micahwittman for how to parse a page that doesnot show any data in its source code??micahwittman2009-12-17T06:01:38Z2009-12-17T06:01:38Z<h3>SEE <a href="http://stackoverflow.com/questions/260540/how-do-you-screen-scrape-ajax-pages">How do you screen scrape ajax pages?</a></h3>
http://stackoverflow.com/questions/1919527/php-form-for-registered-users-in-joomla/1919617#19196170Answer by micahwittman for Php form for registered users in joomlamicahwittman2009-12-17T05:17:46Z2009-12-17T05:17:46Z<h2>SEE <a href="http://itjungles.com/other/joomla-login-session" rel="nofollow">Joomla Login Session Tutorial</a></h2>
<p>(via <a href="http://stackoverflow.com/questions/1066676/custom-sessions-with-joomla">http://stackoverflow.com/questions/1066676/custom-sessions-with-joomla</a> which should also be helpul.</p>
http://stackoverflow.com/questions/1919550/get-all-elements-in-array-besides-the-first-one-php/1919561#19195613Answer by micahwittman for Get all elements in array besides the first one.. ? (php)micahwittman2009-12-17T05:01:26Z2009-12-17T05:01:26Z<pre><code>$arr = array(1,2,3,4,5);
$all_but_the_first_element_array = array_slice($arr, 1);
</code></pre>
http://stackoverflow.com/questions/1919478/syntax-for-multiple-selectors-in-jquery-when-using-or/1919482#19194821Answer by micahwittman for Syntax for Multiple Selectors in jQuery when using ORmicahwittman2009-12-17T04:33:36Z2009-12-17T04:33:36Z<p>Use a comma for multiple selections in one call. The example below selects all elements that have class btn1 and/or btn2</p>
<pre><code>$(".btn1, .btn2").click(function(){
//execute code
}
</code></pre>
http://stackoverflow.com/questions/1917793/degradation-of-skills-as-a-result-of-javascript-libraries/1917929#191792912Answer by micahwittman for Degradation of skills as a result of JavaScript librariesmicahwittman2009-12-16T21:37:51Z2009-12-16T23:31:11Z<p>If we don't keep upgrading our effectiveness via good use of tools, then we need to worry about our future cephalopod overlords.</p>
<p><a href="http://news.bbc.co.uk/2/hi/science/nature/8408233.stm" rel="nofollow"><img src="http://newsimg.bbc.co.uk/media/images/46904000/jpg/%5F46904726%5Foctopus%5F226226.jpg" alt="Octopus using tool" title=""></a></p>
<blockquote>
<p><em><a href="http://news.bbc.co.uk/2/hi/science/nature/8408233.stm" rel="nofollow">Underwater footage</a> reveals that the creatures scoop up halved coconut shells before scampering away with them so they can later use them as shelters.</em></p>
</blockquote>
<p>But seriously, it should not be assumed that just choosing lower levels of abstraction in a workflow necessarily degrades a programmer in any holistic sense (one's goals and constraints should be evaluated to help make the best choice of technique and tools in any scenario). </p>
http://stackoverflow.com/questions/1917941/what-does-it-take-to-be-ready-for-the-real-world/1918029#19180291Answer by micahwittman for What does it take to be ready for the real world?micahwittman2009-12-16T21:50:52Z2009-12-16T21:50:52Z<h3>SEE <a href="http://stackoverflow.com/questions/367381/how-to-get-my-first-programming-job">How to get my first programming job</a></h3>
<blockquote>
<p>Also, here's a query result on stackoverflow that should help:</p>
<p><a href="http://stackoverflow.com/search?q=first+programming+job">http://stackoverflow.com/search?q=first+programming+job</a></p>
</blockquote>
<p>Finally, biographies of actual paths to coding jobs: <a href="http://stackoverflow.com/questions/535980/how-did-you-get-your-first-programming-job">how-did-you-get-your-first-programming-job</a></p>
http://stackoverflow.com/questions/1912784/jquery-addclass-sometimes-fails-but-css-does-not/1912844#19128443Answer by micahwittman for Jquery 'addClass' sometimes fails but css does notmicahwittman2009-12-16T07:04:58Z2009-12-16T07:04:58Z<p>Key concept: <strong>CSS Specificity</strong></p>
<blockquote>
<p>From <a href="http://www.smashingmagazine.com/2007/07/27/css-specificity-things-you-should-know/" rel="nofollow">CSS Specificity: Things You Should Know</a>:</p>
<ol>
<li>Specificity determines, which CSS rule is applied by the browsers.</li>
<li>Specificity is usually the reason why your CSS-rules don’t apply to some elements, although you think they should.</li>
<li>Every selector has its place in the specificity hierarchy.</li>
<li>If two selectors apply to the same element, the one with higher specificity wins.</li>
<li>There are four distinct categories which define the specificity level of a given selector: inline styles, IDs, classes+attributes and elements.<br>
...</li>
</ol>
</blockquote>
<h3>Nice little <a href="http://www.vcarrer.com/2009/09/css-specificity-cheat-sheet.html" rel="nofollow">cheatsheet</a>:</h3>
<p><a href="http://www.vcarrer.com/2009/09/css-specificity-cheat-sheet.html" rel="nofollow"><img src="http://www.allapis.com/CSS-Specificity-Cheat-Sheet/CSS-specificity-cheat-sheet.PNG" alt="CSS Specificity Cheat Sheet" title=""></a></p>
http://stackoverflow.com/questions/1909110/why-is-couchdb-popular/1909291#19092910Answer by micahwittman for Why is CouchDB popular?micahwittman2009-12-15T18:10:21Z2009-12-15T18:10:21Z<blockquote>
<ol>
<li>It's <strong>well-suited</strong> to a good portion of web app development today where scalability and online/offline sysc are important (additionally, the strength of relational database's powerful data set analysis is often less important).</li>
<li>Arguably trivial <strong>replication</strong> built-in (replication is an afterthought in the lineage of most RDBMS ecosystems)</li>
<li>It's emerging as an <strong>essential part of the stack</strong> upon which desktop/cloud sync services in the open source arena are being built (see <a href="https://one.ubuntu.com/" rel="nofollow">Ubuntu One</a>). </li>
</ol>
</blockquote>
<p>Because of #3, there's a decent marketing/awareness campaign behind it right now.</p>
http://stackoverflow.com/questions/1908889/how-to-change-css-with-jquery/1909202#19092020Answer by micahwittman for How to change CSS with jquery ?micahwittman2009-12-15T17:54:58Z2009-12-15T17:54:58Z<p>If you don't want the div, which you asked about, you can remove it and select all links within a td (or add a class to specific td tags and adjust selector: $('td.status') to narrow down selection to just those).</p>
<pre><code>//Click Handler to toggle active state of all links descendant of all td tags
$("td a").click(function(){
//add/remove inactive class and add/remove active smoothly over 1/2 second in total
$(this).toggleClass("inactive, 250").toggleClass("active", 250);
});
</code></pre>
<blockquote>
<p><em>NOTE</em>:</p>
<p>$("td a") will select all a tag descendants. To only get children a tags of td:</p>
</blockquote>
<pre><code>$("td > a")
</code></pre>
http://stackoverflow.com/questions/1905993/how-to-redirect-traffic-from-certain-country/1906011#19060111Answer by micahwittman for how to redirect traffic from certain country ?micahwittman2009-12-15T08:42:35Z2009-12-15T08:42:35Z<p>Answered here: <a href="http://stackoverflow.com/questions/230594/redirect-depending-on-the-country">http://stackoverflow.com/questions/230594/redirect-depending-on-the-country</a></p>
<p>PHP examples in one case here: <a href="http://ipinfodb.com/ip_location_api.php" rel="nofollow">http://ipinfodb.com/ip_location_api.php</a></p>
http://stackoverflow.com/questions/1905783/jquery-table-sorter-problemrecords-are-getting-doubled/1905853#19058531Answer by micahwittman for Jquery table sorter problem(Records are getting doubled)micahwittman2009-12-15T07:59:17Z2009-12-15T07:59:17Z<p>SEE <a href="http://stackoverflow.com/questions/247305/using-jquery-tablesorter-on-dynamically-modified-table/247319#247319">http://stackoverflow.com/questions/247305/using-jquery-tablesorter-on-dynamically-modified-table/247319#247319</a> : </p>
<blockquote>
<p>Force rescan of DOM elements that make up table:</p>
</blockquote>
<pre><code>$('#myTable').trigger("update")
</code></pre>
http://stackoverflow.com/questions/1904299/best-django-book/1904308#19043081Answer by micahwittman for Best Django book?micahwittman2009-12-14T23:36:04Z2009-12-14T23:36:04Z<blockquote>
<p>SEE <a href="http://stackoverflow.com/questions/130061/book-and-tutorial-recommedations-for-django-1-0">http://stackoverflow.com/questions/130061/book-and-tutorial-recommedations-for-django-1-0</a></p>
</blockquote>
http://stackoverflow.com/questions/1899103/if-element-exists-do-x-jquery/1899115#18991152Answer by micahwittman for If element exists, do X (jQuery)micahwittman2009-12-14T05:41:57Z2009-12-14T05:56:46Z<pre><code>if ($(".element1").is('*') || $(".element2").is('*')) {
...stuff...
}
</code></pre>
<p><strong>EDIT</strong> (per comment) <em>Select elements by multiple classes in one call:</em></p>
<pre><code>if ($(".element1, .element2").is('*') {
...stuff...
}
</code></pre>
http://stackoverflow.com/questions/1899099/how-to-select-an-object-if-it-contains-a-number-with-jquery/1899108#18991082Answer by micahwittman for How to select an object if it contains a number with jquery?micahwittman2009-12-14T05:39:12Z2009-12-14T05:39:12Z<blockquote>
<p>SEE <a href="http://stackoverflow.com/questions/1883922/jquery-text-match">http://stackoverflow.com/questions/1883922/jquery-text-match</a></p>
</blockquote>
http://stackoverflow.com/questions/1898749/im-looking-for-an-english-language-word-list/1899023#18990230Answer by micahwittman for I'm looking for an english language word listmicahwittman2009-12-14T05:07:19Z2009-12-14T05:07:19Z<p>If you're open to using some python in the mix, here's a good how to article:</p>
<blockquote>
<h2><a href="http://blog.prashanthellina.com/2007/10/17/ways-to-process-and-use-wikipedia-dumps/" rel="nofollow">Ways to process and use Wikipedia dumps</a></h2>
</blockquote>
<p><em>(pulling Wikipedia data (there's your english text) and pushing into a MySQL database)</em></p>
http://stackoverflow.com/questions/1898253/jquery-inserting-a-button-after-an-anchor/1898268#18982683Answer by micahwittman for jQuery Inserting a Button After An Anchormicahwittman2009-12-13T23:55:25Z2009-12-13T23:55:25Z<pre><code>//Add button after every theAclass link
$('a.theAClass').after('<button type="button">Click Me!</button>');
//Add button after only the first theAclass link
$('a.theAClass:first').after('<button type="button">Click Me!</button>');
</code></pre>
http://stackoverflow.com/questions/1897727/get-first-day-of-week-in-php/1897865#18978650Answer by micahwittman for Get first day of week in PHP?micahwittman2009-12-13T21:36:28Z2009-12-13T21:47:27Z<pre><code><?php
/* PHP 5.3.0 */
date_default_timezone_set('America/Denver'); //Set apprpriate timezone
$start_date = strtotime('2009-12-15'); //Set start date
//Today's date if $start_date is a Sunday, otherwise date of previous Sunday
$today_or_previous_sunday = mktime(0, 0, 0, date('m', $start_date), date('d', $start_date), date('Y', $start_date)) - ((date("w", $start_date) ==0) ? 0 : (86400 * date("w", $start_date)));
//prints 12-13-2009 (month-day-year)
echo date('m-d-Y', $today_or_previous_sunday);
?>
</code></pre>
<p><em>(Note: MM, dd and yyyy in the Question are not standard php date format syntax - I can't be sure what is meant, so I set the $start_date with ISO year-month-day)</em></p>
http://stackoverflow.com/questions/1883857/how-to-implement-simple-online-management-for-a-book-library/1883943#18839433Answer by micahwittman for How to implement simple online management for a book library?micahwittman2009-12-10T20:52:57Z2009-12-10T20:59:07Z<p>I suggest take a look at the available open source tools for libraries before deciding to build one from scratch:</p>
<h3><a href="http://www.libsuccess.org/index.php?title=Open_Source_Software#Great_Free.2FOpen_Source_Tools_for_Libraries" rel="nofollow">http://www.libsuccess.org/index.php?title=Open_Source_Software#Great_Free.2FOpen_Source_Tools_for_Libraries</a></h3>
<p> </p>
<p>Another good resource in your research: <a href="http://www.oss4lib.org/" rel="nofollow">http://www.oss4lib.org/</a></p>
<p> </p>
<p>If you find an existing tool that fits the bill (or enough to make it worth extending), that will be important in guiding what platform/language/framework and techniques will be best to use.</p>
http://stackoverflow.com/questions/1866754/how-to-refresh-the-form-value-using-jquery/1870852#18708520Answer by micahwittman for How to refresh the form value using JQuerymicahwittman2009-12-09T00:27:43Z2009-12-10T19:01:14Z<pre><code>$('#submit').submit(function(){
var url = $('#link_website_url').val(); //http://example.com/12345
var num = yourNumExtractorFunction(url); //returns -1 if there is no number extracted
if(num > -1){
$('#link_website_url').val('http://otherdomain.com/' + num); //http://otherdomain.com/12345
}else{
$('#link_website_url').after('<span id="error_link_web_url" class="error">Incorrect format! Please try again.</span>');
return false; //error, so cancel this submit
}
});
</code></pre>
<p> </p>
<p>If you perform additional validation, cancel the submit even if an individual check passes, clear error messages per check that validates (e.g. $('#error_link_web_url').remove();) and submit after all checks pass:</p>
<pre><code>var checkFailed = false;
$('#submit').submit(function(){
var url = $('#link_website_url').val(); //http://example.com/12345
var num = yourNumExtractorFunction(url); //returns -1 if there is no number extracted
if(num > -1){
$('#link_website_url').val('http://otherdomain.com/' + num); //http://otherdomain.com/12345
$('#error_link_web_url').remove();
}else{
$('#link_website_url').after('<span id="error_link_web_url" class="error">Incorrect format! Please try again.</span>');
checkFailed = true;
}
/*Other checks...*/
if(checkFailed){
return false; //cancel submit
}
});
</code></pre>
http://stackoverflow.com/questions/1934869/jquery-ajax-doesnt-seem-to-be-workingComment by micahwittman on [jQuery] $.ajax doesn't seem to be workingmicahwittman2009-12-20T04:59:06Z2009-12-20T04:59:06ZOnce you get the $.ajax usage figured out, and based on the check_user.php snippet shown here, I suggest looking at coding to prevent an SQL injection on the PHP request side. SEE Prepared statments <a href="http://stackoverflow.com/questions/60174/best-way-to-stop-sql-injection-in-php/60496#60496" rel="nofollow" title="best way to stop sql injection in php">stackoverflow.com/questions/60174/…</a> and filtering <a href="http://stackoverflow.com/questions/60174/best-way-to-stop-sql-injection-in-php/60442#60442" rel="nofollow" title="best way to stop sql injection in php">stackoverflow.com/questions/60174/…</a> All the best.http://stackoverflow.com/questions/1926305/how-to-calculate-sales-tax-with-this-script/1926327#1926327Comment by micahwittman on How to calculate sales tax with this script?micahwittman2009-12-19T21:54:06Z2009-12-19T21:54:06ZYou need to beware of the pitfalls of floating point calculations on currency. SEE <a href="http://stackoverflow.com/questions/1144653/currency-conversion-for-e-commerce-site-preventing-incorrect-total-cart-due-to/1144757#1144757" rel="nofollow" title="currency conversion for e commerce site preventing incorrect total cart due to">stackoverflow.com/questions/1144653/…</a>http://stackoverflow.com/questions/1930629/jquery-and-2-fadein-in-one-clickComment by micahwittman on jQuery and 2 fadeIn in one clickmicahwittman2009-12-18T21:01:07Z2009-12-18T21:01:07ZIf you want the close button and contact box to animate in exactly the same way, and if the close button tag is inside the contact box div - why not just fade out the contact box (which contains the button)?http://stackoverflow.com/questions/1929562/jquery-tools-overflow-images-from-input-box/1929667#1929667Comment by micahwittman on JQuery tools, overflow images from input boxmicahwittman2009-12-18T18:09:45Z2009-12-18T18:09:45Zprodigitalson, it's the little things, isn't it. :)http://stackoverflow.com/questions/1926481/how-to-iterate-by-month-between-two-specified-dates/1926582#1926582Comment by micahwittman on How to iterate, by month, between two specified datesmicahwittman2009-12-18T17:14:25Z2009-12-18T17:14:25ZYou're welcome, justinl. Learning how to let the database do the heavy lifting in cases where it's efficient/effective is definitely worth the time to dive deeper.http://stackoverflow.com/questions/366685/how-often-do-you-need-to-create-a-real-class-hierarchy-in-your-day-to-day-program/366795#366795Comment by micahwittman on How often do you need to create a real class hierarchy in your day to day programming?micahwittman2009-12-18T04:23:53Z2009-12-18T04:23:53Zmother extends progenitor - there, fixed it for you ;) Yes, great point about the of subclassing for its own sake problem out there.http://stackoverflow.com/questions/1925377/need-the-css-a-tag-is-not-cooperating/1925386#1925386Comment by micahwittman on Need the CSS a.tag is not cooperatingmicahwittman2009-12-17T23:52:22Z2009-12-17T23:52:22Zhacker, could be. More details from OP needed.http://stackoverflow.com/questions/1924723/using-jquery-to-add-remove-a-class-based-on-body-id/1924781#1924781Comment by micahwittman on Using Jquery to add/remove a class based on body Idmicahwittman2009-12-17T23:35:04Z2009-12-17T23:35:04ZBen, when I looked closer, you had more than one kind of URL pattern happening - some with .php, some just a directory. So here's a better approach that works for all main/top navigation links (SEE bottom of answer again).http://stackoverflow.com/questions/1924723/using-jquery-to-add-remove-a-class-based-on-body-id/1924781#1924781Comment by micahwittman on Using Jquery to add/remove a class based on body Idmicahwittman2009-12-17T22:42:18Z2009-12-17T22:42:18ZAnd you son has one fantastic name, btw.http://stackoverflow.com/questions/1924723/using-jquery-to-add-remove-a-class-based-on-body-id/1924781#1924781Comment by micahwittman on Using Jquery to add/remove a class based on body Idmicahwittman2009-12-17T22:41:42Z2009-12-17T22:41:42ZBen, glad to help. I lived half my life in Langley, though I'm not there now. Give my regards to everyone in the Fraser Valley. :)http://stackoverflow.com/questions/1924723/using-jquery-to-add-remove-a-class-based-on-body-id/1924781#1924781Comment by micahwittman on Using Jquery to add/remove a class based on body Idmicahwittman2009-12-17T22:38:27Z2009-12-17T22:38:27ZThe code was firing before the HTML loads. See the bottom of my Answer for the replacement code.http://stackoverflow.com/questions/1924723/using-jquery-to-add-remove-a-class-based-on-body-id/1924781#1924781Comment by micahwittman on Using Jquery to add/remove a class based on body Idmicahwittman2009-12-17T22:31:11Z2009-12-17T22:31:11Z<i>checking your live page...</i>http://stackoverflow.com/questions/1924723/using-jquery-to-add-remove-a-class-based-on-body-id/1924781#1924781Comment by micahwittman on Using Jquery to add/remove a class based on body Idmicahwittman2009-12-17T22:14:28Z2009-12-17T22:14:28ZOk, I see now. Your footer links work: their links have no leading slash, just "index.php". The header links are like "/index.php". The solution in my answer above ($("a[href$='" + bodyID + ".php']").toggleClass('current-selected');)http://stackoverflow.com/questions/1924723/using-jquery-to-add-remove-a-class-based-on-body-id/1924781#1924781Comment by micahwittman on Using Jquery to add/remove a class based on body Idmicahwittman2009-12-17T22:08:00Z2009-12-17T22:08:00Z<i>looking right now...</i>http://stackoverflow.com/questions/1923327/jquery-validation-with-select-and-text-input/1923441#1923441Comment by micahwittman on JQuery Validation with Select and Text Inputmicahwittman2009-12-17T21:47:22Z2009-12-17T21:47:22ZWell done, brianpeiris!