Developing Consistent Design Pattens Subtext for header Heading View details » Heading You can activate a Twitter Bootstrap modal window by clicking on the button or link without writing any JavaScript code via data attributes. Set data-toggle="modal" on a controller element, like a button or an anchor, along with a data-target="#myModal" or href="#myModal" to target a specific modal...
Wednesday, September 17, 2014
Tuesday, September 16, 2014
HTML Ampersand Character Codes
HTML Ampersand Character Codes
These are character sequences that may appear in HTML documents; they represent sometimes useful symbols that are not part of the standard ASCII set or that would be difficult or impossible to type otherwise (e.g. the less-than sign, which would always be mistaken for the beginning of an HTML tag). Case is signinficant.
The content of this table has been throughly...
Google Drive SDK: Creating Public Folder (from SDK)
×
Alert!
Warning! Please visit Page Status Information alert link
Drive SDK documentation
Click me
function createPublicFolder(folderName) {
var body = {
'title': folderName,
'mimeType': "application/vnd.google-apps.folder"
};
var request = gapi.client.drive.files.insert({
'resource': body
});
request.execute(function(resp) {
console.log('Folder...
Monday, September 15, 2014
Fusion Tables API Example: Google Chart Tools
table {
width: 30%;
}
th {
width: 30%;
text-align: left;
}
body {
font-family: Arial, sans-serif;
font-size: 12px;
}
#map-canvas {
height: 500px;
width: 600px;
}
#visualization {
height: 400px;
width: 500px;
}
query += " WHERE 'victims' = '" + team + "'";
google.load('visualization', '1');
function drawTable()...
Bootstrap Simplied Images using a Jquery Var
$( document ).ready(function() {
var R1C1= 'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjdgzkQF1GvEDhgYZWRGnl80245J3kYhmiLWJVZkdZJMUtisMrdj4zrVAxDMDspY1TXPhAzxVwd1rfBvOcCx9u3I8YHtVkbHJJdhOPZuHzWvqgeTEqpV1xUkNZCXHjz4j69ra4gSJZi-DQwYXg/s1600/mary_alicia_driscol.jpg';
var PR1C1=...
Saturday, September 13, 2014
bootstrap-rich-text-editor
Enter your text here..
Huge
Normal
Small
Add
$(function(){
function initToolbarBootstrapBindings() {
var fonts = ['Serif', 'Sans', 'Arial', 'Arial Black', 'Courier',
'Courier New', 'Comic Sans MS', 'Helvetica', 'Impact', 'Lucida Grande',
'Lucida Sans', 'Tahoma', 'Times',
'Times New Roman', 'Verdana'],
fontTarget...