Soft Reject Need Help

I got soft reject to use latest jQuery. And remove multiple ready calls in main.js

Here is my main js file http://iamifti.com/max/js/main.js

How can i improve it?

Thanks

@thatsblogging
It mean just use the newer version of jQuery.
and about ready calls - consider below few points - for more improvement in next time submissions.
PROPER EVENT BINDING: Consider using the preferred .on() method rather than .click(), .bind(), .hover(), etc.
For best performance and concise code use event delegation whenever possible: http://code.tutsplus.com/tutorials/quick-tip-javascript-event-delegation-in-4-minutes--net-8961
STRICT MODE REQUIRED: All JavaScript should be written with “use strict” mode on. Please note that strict mode is scoped. For concise code it is recommened to placed

Regards,
Phoenixcoded

1 Like

Excellent, Thank you so much.