hi I want to disable click after the user clicked on an element
the elements loaded after my script (elements built by javascript) and I can't use these code
     $('.disableClick').click(
            function (e) {
                e.stopPropagation();
                return false;
            }
        )
and I use these code to do work on the element by click
    $('body').on('click','.disableClick',
                function (e) {
                    if(!is_valid)
                    {
                        e.preventDefault();
                        e.stopPropagation();
                        return false;
                    }
                }
            );
I think disabling click codes like e.stopPropagation() don't support for
$('body').on('click') event
 
     
    