I am somewhat new to jquery.
Can any one tell me what's wrong with this?
var l = $(target)+".thumb".length;
The console log returns this:
[object Object]6
I have the "target" var set up ahead of the "l" var (along with another var) like this:
var target = $(this).parent();
var n = $(".thumb").outerWidth(true);
var l = $(target)+".thumb".length;
I'm not sure what "[obbject Object] in the log means.