Closed srphcr closed 10 years ago
Uncaught TypeError: Cannot call method 'css' of undefined jquery.wookmark.js:52
There are codes like below between L50 and L53.
for (i in data) { item = data[i]; item.obj.css(item.css); }
However, the problem of prototype with for-in sentence. I think this should be like below.
for (i = 0; i < data.length; i++) { item = data[i]; item.obj.css(item.css); }
Uncaught TypeError: Cannot call method 'css' of undefined jquery.wookmark.js:52
There are codes like below between L50 and L53.
However, the problem of prototype with for-in sentence. I think this should be like below.