Author:
erics, October 29th, 2020
First quit Mail, if open. In Terminal, enter the following to disable the Data Detectors which could be responsible for the hang:
|
defaults write com.apple.terminal DisableDataDetectors YES |
Categories: How-To's, Technology Tags: Freeze, Hang, howto, MacOS, macosx, select, selection, Terminal, text(), tips
| No comments
Author:
erics, May 9th, 2012
|
if ( ! jQuery('input[name=yourRadioGroup]').is(':checked') ) return false; ~OR~ if (! jQuery('input[name=yourRadioGroup]:checked').val()) { alert('Please make a selection...'); } else { alert('Thank you for making a selection!'); } |
Categories: How-To's, Technology Tags: Check, Checked, howto, JQuery, Radio, Radio Button, select, selected, selection, tips
| No comments
Author:
erics, May 1st, 2011
This is of course for non-IE browsers:
|
.myclass { -webkit-user-select: none; -moz-user-select: none; -khtml-user-select: none; } |
Categories: How-To's, Technology Tags: CSS, Doubleclick, JQuery, Prevent select, Prevent text select, Prevent text selection, selection, Text select, Text selection
| No comments