Skip to content

Instantly share code, notes, and snippets.

@simonmcmanus
Created January 11, 2011 20:16
Show Gist options
  • Save simonmcmanus/775043 to your computer and use it in GitHub Desktop.
Save simonmcmanus/775043 to your computer and use it in GitHub Desktop.
var jGrid = {
color:'red',
};
$('body').dblclick(function(e) {
if(e.shiftKey)
$('<span>|</span>').appendTo('body').css({'height':'1px', 'background-color':'red','position':'absolute', 'width':'100%', 'top':e.pageY+'px'});
else
$('<span>|</span>').appendTo('body').css({'height':'100%', 'background-color':'red','position':'absolute', 'width':'1px', 'left':e.pageX+'px', 'top':'0'});
});
//(e.page+a.axis+'px')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment