Comment by HoldOffHunger on Disable all buttons on page
Upvoted, thanks! Should be accepted answer, javascript is tagged in the question before jQuery, thank you!
View ArticleComment by HoldOffHunger on Javascript alert message Alternative
This doesn't support adding HTML at all. You'll only be able to make messages that are just plaintext, and in which case, if all you get is plaintext, what's the point of adding an entire library for...
View ArticleComment by HoldOffHunger on Javascript alert message Alternative
How is this an alternative to a questionaire context menu? This is literally just relaying info in plaintext to the user.
View ArticleComment by HoldOffHunger on Get body element of site using only javascript
Hey, Zak, I know it's been 8 years, buuuuut, maybe think about changing the accepted answer? I hate downvoting old answers because they're essentially wrong. =\
View ArticleComment by HoldOffHunger on whats the alternate for alert function in...
There is another question that is seeking answers to a similar question, I have an answer there that should help: Javascript alert message Alternative
View ArticleComment by HoldOffHunger on What's the best way to make this icon wiggle.....
I have an answer elsewhere that I hope helps, with explanations on how to make your element shake, rotate, squish, or skew! Good luck!
View ArticleComment by HoldOffHunger on How do I make a DIV vibrate or buzz? (similar to...
I have an answer to a similar question, where I show how to make any element shake, rotate, squish, or skew. Hope this helps!
View ArticleComment by HoldOffHunger on How to hide style section in chrome dev tools?
Link rot. You linked to something to explain how it solves a problem, without ever saying what that thing is, and now that link doesn't explain anything anymore.
View ArticleComment by HoldOffHunger on How to hide style section in chrome dev tools?
2023; does not work anymore.
View ArticleComment by HoldOffHunger on How to Skip a Database in mysqlcheck for...
You are a brilliant, amazing person! Thank you so much. I needed this to solve skipping the mysql DB, which I think is just where DigitalOcean puts schema stuff. Thanks!
View ArticleComment by HoldOffHunger on How to Skip a Database in mysqlcheck for...
Hey, Stas! Any chance you've had a chance to review the answers posted and accept one of them? I believe the thing you said "seems like it doesn't work" actually does work, based on my own tests and...
View ArticleComment by HoldOffHunger on Composer install error - requires ext_curl when...
Updated the answer with the command line for PHP 8.1, thanks again!
View ArticleComment by HoldOffHunger on I have set up my domain and secret in my app...
Please mark the correct answer as accepted or, better yet, close this since it was just a typo?
View ArticleComment by HoldOffHunger on filectime vs filemtime for file modification time?
Where are you quoting from in these citations?
View ArticleComment by HoldOffHunger on Is it possible to use "/" in a filename?
I strongly believe this is the right approach! Anyone could choose any "delimiter", but the HTTP character-encoding approach is the right one, because it's already agreed-upon and to retrieve the '/'...
View ArticleAnswer by HoldOffHunger for dragexit vs dragleave - which should be used?
The MDN web documents you cite are indeed correct. Dragexit is when a dragging and the cursor is "outside of the selected target", whereas Dragleave fires when dragging and the cursor "leaves."If you...
View ArticleAnswer by HoldOffHunger for Get record counts for all tables in MySQL database
Like many others, I have difficulty getting an accurate value on the INFORMATION_SCHEMA tables with InnoDB, and would infinitely benefit from being able to make a query that depends on count(), and,...
View ArticleAnswer by HoldOffHunger for mysqlimport: Error: 1045, Access denied
TLDR: Use the `--set-gtid-purged=OFF` Arg in MySQLDumpWhen doing mysqldump -u username -p to create the file you're going to import elsewhere, throw in the argument of --set-gtid-purged=OFF.GTIDs are...
View ArticleAnswer by HoldOffHunger for Omit "Is a directory" results while using find...
Exclude directory warnings in grep with the --exclude-dir option:grep --exclude-dir=* 'search-term' *Just look at the grep --help page:--exclude-dir=PATTERN directories that match PATTERN will be skipped.
View ArticleAnswer by HoldOffHunger for How does the Linux command `file` recognize the...
TLDR: Magic File Doesn't Support UTF-8 BOM Markers(and that's the main charset you need to care about)The source code is on GitHub so anyone can search it. After doing a quick search, things like BOM,...
View Article