I'm using the jQuery UI Layout plugin and I keep getting this error in Firebug: $('body').layout is not a function
. I also get the same error in IE8 and below.
Obviously, it's being caused by the line where I initiate the layout UI in my scripts file:
$('body').layout({ *options here* });
Is there a way to prevent this error from showing? I'm pretty sure I need the BODY selector for this particular plugin to run.
** SOLUTION **
As the helpful answers say below, I had this line: $('body').layout({ *options here* });
BEFORE I included my jQuery and jQuery UI Layout Plugin files. Once I put the body.layout
after those two inclusions, the error went away.