Skip to content
View jkcox's full-sized avatar
  • Tempe, AZ
  • 11:48 (UTC -07:00)

Block or report jkcox

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. ASU-KE/UDS-WordPress-Theme ASU-KE/UDS-WordPress-Theme Public

    WordPress theme styled using the ASU Unity Design System (@asu/unity-bootstrap-theme 2023)

    CSS 1 1

  2. ASU-KE/unity-carousels ASU-KE/unity-carousels Public

    Carousels built with glidejs, customized for the ASU Unity Design System. Built for the Gutenberg editor.

    JavaScript

  3. asuengineering/pitchfork-people asuengineering/pitchfork-people Public

    Pitchfork People allows you to build a directory of people that is automatically maintained by data from ASU Search.

    PHP 1

  4. Drupal 8 Webform custom module: crea... Drupal 8 Webform custom module: create hook: Apply webform creator roles to webform
    1
    <?php
    2
    
                  
    3
    use Drupal\webform\WebformInterface;
    4
    
                  
    5
    function my_module_name_webform_create(WebformInterface $webform) {
  5. Form input JS Form input JS
    1
    <!DOCTYPE html>
    2
    <html lang="en">
    3
    <head>
    4
      <meta charset="UTF-8">
    5
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. Get all heading tags in console Get all heading tags in console
    1
    for (var i = 0, headings = $$('h1,h2,h3,h4,h5,h6'); i < headings.length; i++) {
    2
    console.log(headings[i].textContent.trim() + " " + headings[i].tagName, headings[i]);
    3
    }