Skip to content

Instantly share code, notes, and snippets.

View ianitsky's full-sized avatar

Douglas Ianitsky ianitsky

  • SuperFrete
  • Brazil
  • 08:01 (UTC -03:00)
View GitHub Profile
@ianitsky
ianitsky / custom.js
Created December 17, 2013 19:17 — forked from drewjoh/custom.js
$(document).ready(function() {
// Support for AJAX loaded modal window.
// Focuses on first input textbox after it loads the window.
$('[data-toggle="modal"]').click(function(e) {
e.preventDefault();
var url = $(this).attr('href');
if (url.indexOf('#') == 0) {
$(url).modal('open');
} else {