Skip to content

Instantly share code, notes, and snippets.

View glennhefley's full-sized avatar
💭
I may be slow to respond.

Glenn Hefley glennhefley

💭
I may be slow to respond.
View GitHub Profile
@glennhefley
glennhefley / neonlink_ui.html
Last active July 31, 2024 02:42
A CSS Neon Link design for UI
@glennhefley
glennhefley / ajax-d01.html
Created August 21, 2024 18:24
using Ajax, loads content from a text file into a paragraph tag
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Load Text File with AJAX</title>
</head>
<body>
<h1>Load Content into a Paragraph</h1>
<p id="text-content">This content will be replaced by the text file content.</p>
https://api.datamuse.com/words?rel_jjb=ocean
@glennhefley
glennhefley / jqdcoload.js
Last active February 27, 2025 08:20
jQuery Snippet -- Doc load complete
$(document).ready(function () {
$("p").click(function () {
$(this).hide();
});
});