Soft Reject after the same

I am again soft rejected. Please help me with this message:

  1. REDUNDANT JAVASCRIPT EVENTS: There are currently redundant events in your JavaScript. For example, you have multiple $(document).ready() events or multiple $(window).load() events. Please consolidate all code that should occur within a single event.

I am not very good in jquery. Can someone explaine this message?

Hi @anisthemes,

Try to run all your functions from a single event:

$(document).ready( function1(), function2(), function3() );
$(window).load( function4(), function5(), function6() ); 

Thanks,
Luca

1 Like

Thank you for answer i will try it :smile: