##V1 Sticky-Reminder
###The Struggle Originally I started off using jQuery.noConflict() in my code in:
jQuery.noConflict();
(function( $ ) {
$(function() {
//my code
});| $(document).on('ready', start); | |
| function start(event){ | |
| var $inputBox = $('#inputBox'); | |
| var $btn = $('#btn'); | |
| var $sect = $('#sect'); | |
| var $form = $('#myForm'); | |
| var arraylist = []; | |
| var list = [] |
| /* 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'); |
| <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> |
| <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"> |
##V1 Sticky-Reminder
###The Struggle Originally I started off using jQuery.noConflict() in my code in:
jQuery.noConflict();
(function( $ ) {
$(function() {
//my code
});###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"
]);