Alright so for some reason whenever I try to click this input nothing happens, altho it should alert hello world...
<label>Ime Profesora</label><br/>
<input type='text' id='profesor_Ime' placeholder='Ime profesora...' /><br/>
<input type='submit' id='profesor_Submit' value='Dodaj Profesora'/>
And the JS
$("#profesor_Submit").click(function() {
alert("Hello world");
});
Here is the Jsfiddle https://jsfiddle.net/8y0hq6md/1/
EDIT: I am loading the form dynamically from the SQL, could that maybe be the cause of the problem?