Skip to content

Instantly share code, notes, and snippets.

@asuh
asuh / frontend.php
Last active December 11, 2015 00:19 — forked from dbernar1/frontend
// .content contains content
<div class="content"></div>
<script>
$(document).ready(function() {
// ajax to fetch the slider data.
$.ajax({
type: 'POST',
url: '<?php echo admin_url("admin-ajax.php"); ?>',
data: { action: "front_page_slider" },
@asuh
asuh / gist:3956362
Created October 26, 2012 00:44
jQuery - hide from IE8
if (!$.browser.msie || $.browser.version !== "8.0") {
// Hidden from IE8
}
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
<script src="//code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
</head>
<body>