heyyy / espa

Automatically exported from code.google.com/p/espa
0 stars 0 forks source link

Remove event listener subscriptions from html markup #192

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
All event subscriptions for the ui should be moved out of the markup code and 
into JQuery event listeners.

instead of: <element id='some_element' onchange='some_function();' />

it should be

  $(document).ready(function(){
        $("#some_element).change(function() {

        });

  });

Original issue reported on code.google.com by davehil...@gmail.com on 21 Jul 2014 at 3:19

GoogleCodeExporter commented 9 years ago
this is done.

Original comment by davehil...@gmail.com on 21 Jul 2014 at 4:24

GoogleCodeExporter commented 9 years ago
verified

Original comment by davehil...@gmail.com on 31 Jul 2014 at 6:38