Skip to content

Instantly share code, notes, and snippets.

View mona87's full-sized avatar

Ramona Bellamy mona87

View GitHub Profile
@mona87
mona87 / script.js
Last active August 29, 2015 14:21
Todo List #2
$(document).on('ready', start);
function start(event){
var $inputBox = $('#inputBox');
var $btn = $('#btn');
var $sect = $('#sect');
var $form = $('#myForm');
var arraylist = [];
var list = []
@mona87
mona87 / api.js
Last active August 29, 2015 14:24 — forked from fwielstra/api.js
/* The API controller
Exports 3 methods:
* post - Creates a new thread
* list - Returns a list of threads
* show - Displays a thread and its posts
*/
var Thread = require('../models/thread.js');
var Post = require('../models/post.js');
@mona87
mona87 / index.html
Last active August 29, 2015 14:24
jQuery Photo Album
<html>
<head>
<title></title>
<link href='http://fonts.googleapis.com/css?family=Cantarell' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
@mona87
mona87 / index.html
Created July 28, 2015 11:40
IMDB Api
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="container-fluid">
<section class= "page" id ="home">
@mona87
mona87 / notes.md
Last active August 29, 2015 14:28
clearhead hw

##V1 Sticky-Reminder

###The Struggle Originally I started off using jQuery.noConflict() in my code in:

jQuery.noConflict();
(function( $ ) {
  $(function() {
    //my code
 });
@mona87
mona87 / pagetype.md
Last active January 18, 2016 21:55
Monetate Pagetype Tags

###SetPageType SetPageType API

The setPageType method is used to set a page type that describes the type of page a visitor views on your site. Page types are used to consistently target actions and are a helpful alternative to manual URL targeting.

// setPageType Method
  window.monetateQ.push([
 "setPageType",
 "idString"
]);