A Pen by Davide Curletti on CodePen.
Yo - I was wondering if you knew what was wrong with my jquery code to get the values of my buttons? Specifically lines 6 and 7. Line 5 works fine.
<input type="text" id="fld_1003421_1"> | |
<script type="text/javascript" | |
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAy7pJbsg4gozI1KGhvHT7x1rVmVHVAc5E&libraries=places,geometry&callback=initAutocomplete" | |
async defer></script> | |
<script type="text/javascript" src="fireStationForm.js"></script> | |
var autocomplete, placesService, distanceService; | |
var componentForm = { | |
street_number: 'short_name', | |
route: 'long_name', |
sudo yum update -y | |
# https://docs.aws.amazon.com/AmazonECS/latest/developerguide/docker-basics.html | |
sudo yum install -y docker | |
sudo service docker start | |
sudo usermod -a -G docker ec2-user | |
# log out and log back in | |
# install docker-compose | |
# https://docs.docker.com/compose/install/#install-compose |
#!/bin/bash | |
# You can make the script more generic by changing the matching pattern | |
SRC_PATTERN=".*\.(ts|tsx)$" | |
# needed bc env vars change when run inside a git hook | |
# https://stackoverflow.com/questions/3542854/calling-git-pull-from-a-git-post-update-hook | |
# https://serverfault.com/questions/107608/git-post-receive-hook-with-git-pull-failed-to-find-a-valid-git-directory | |
unset $(git rev-parse --local-env-vars) |
import Vendor from './vendor'; | |
angular.module('appName', ['dependencies']).config( ('providers') => { | |
//defined routes, etc. | |
}); | |
// This is explicitly called so that the app 'appName' is available when you require the rest of your Angular files | |
Vendor() | |
const $el = document.getElementById('elementWithNgApp') || document; | |
angular.bootstrap($el, 'appName') |
A Pen by Davide Curletti on CodePen.
Yo - I was wondering if you knew what was wrong with my jquery code to get the values of my buttons? Specifically lines 6 and 7. Line 5 works fine.
<div class="screen"> | |
<p align="right"></p> | |
</div> | |
<div class="pad"> | |
<div class="number">1</div> | |
<div class="number">2</div> | |
<div class="number">3</div> | |
<div class="number">4</div> | |
<div class="number">5</div> | |
<div class="number">6</div> |