Skip to content

Instantly share code, notes, and snippets.

@crittermike
Created July 2, 2010 13:34
Show Gist options
  • Save crittermike/461364 to your computer and use it in GitHub Desktop.
Save crittermike/461364 to your computer and use it in GitHub Desktop.
function getEbooks(l,s,p,pw) {
// l=loc
// s = subject
// p = prodID (optional)
// pw - use password
url = "ebooks.php?loc=" + l + "&subject=" + s + "&prod=" + p + "&pw=" + pw;
$("#results").empty().html('<img align = "right" src="http://galesupport.com/picts/loading_cengage.gif" alt="loading" />');
$("#results").load(url);
$('a.desc').cluetip({splitTitle: '|', positionBy: 'fixed', leftOffset: '-15px', topOffset: '75px'});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment