Quote:
Originally Posted by fris
can you upload a live version?
|
Just sent you an ICQ. I'd rather not have this on the board.
If you didn't get me, hit me up on Skype - awmlace
Quote:
Originally Posted by Dvae
Aren't you using a JavaScript debugger?
Some browsers have it built-in or you may have to install an extension.
|
Did not even think about that.
Here's the error -
Line 96
Code:
return (media.toLowerCase() == "" || media.toLowerCase() == "print")
Google'd this -
http://stackoverflow.com/questions/1...on-not-working
Quote:
As Pencho Ilchev referred, this is caused by the jQuery 1.6 BC break of .attr(). Here is a fixed fork of the PrintArea plugin:
|
Tried the recommended "fix" and received this error
Quote:
Timestamp: 9/1/2012 2:46:50 PM
Error: TypeError: $("#" + container).printArea is not a function
Source File: /script/core.js
Line: 11
|
Which core is-
Code:
$(function() {
$('.print').click(function() {
var container = $(this).attr('rel');
$('#' + container).printArea();
return false;
});
$('.clickprint').click(function() {
var container = $(this).attr('rel');
$('#' + container).printArea();
return false;
});
});