Skip to content

Instantly share code, notes, and snippets.

View Ajaxsoap's full-sized avatar

Marvin Villanueva Ajaxsoap

  • Emerson Philippines
  • Quezon City
View GitHub Profile
<h3>
Redirecting to google.com.com after <span id="countdown">20</span> seconds
</h3>
<script type="text/javascript">
var seconds = 20;
function countdown() {
seconds = seconds - 1;
if (seconds < 0) {
window.location = "https://google.com";
} else {
@Ajaxsoap
Ajaxsoap / submit_form.html
Created April 8, 2016 05:52 — forked from jeremyhodges/submit_form.html
Using Dropzone.JS to upload via orion.filesystem with drag and drop support.
<template name="submit_form">
<div class="alert alert-success" style="display: none;" role="alert">
<strong>Your work has been submitted!</strong> You successfully submitted your work. It is now in-review.
</div>
<div class="well">
{{# with job }}
<h3 class="text-info job-name" data-job-id="{{ _id }}">{{ name }}</h3>