Skip to content

Instantly share code, notes, and snippets.

@seivan
Forked from anonymous/gist:404836
Created May 18, 2010 10:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seivan/404844 to your computer and use it in GitHub Desktop.
Save seivan/404844 to your computer and use it in GitHub Desktop.
// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
$(document).ready(function() {
$("#comment_form").submit(function() {
$.post($(this).attr("action"), $(this).serialize(), null, "script");
return false;
})
})
/*document.observe("dom:loaded", function() {
// the element in which we will observe all clicks and capture
// ones originating from pagination links
var container = $(document.body)
if (container) {
var img = new Image
img.src = '/images/spinner.gif'
function createSpinner() {
return new Element('img', { src: img.src, 'class': 'spinner' })
}
container.observe('click', function(e) {
var el = e.element()
if (el.match('.pagination a')) {
el.up('.pagination.ajax').insert(createSpinner())
new Ajax.Request(el.href, { method: 'get' })
e.stop()
}
})
}
})*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment