There was a problem with the fact that I have a form page that I open using the jQuery dialog box. But on this page I need to use the .click event for some objects, but this does not work. The code for this case is a simple alert () test from this page.
<input type='text' class='input_date' value='' readonly />
Therefore, I want to receive a warning when I click on the input field inside this dialog form.
$('.input_date').click(function() { alert('hi') });
What is the problem, how can I get this working? Thanks
source share