Guys, is it a mistake in the codes? When you click on the input with the id ahmet in jquery, I said "I succeeded" to the screen, but it did not work.
codes in html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en"> <head> <title>Mehmet Acar - Kişisel Web Site</title> <link rel="stylesheet" href="style.css" type="text/css" media="screen" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script> <script src="jqueryn.js"></script> </head> <body> <input type="submit" id="ahmet" value="Gönder" /> </body> </html>
All code inside jquery no other code except this
$("input#ahmet").click(function(){ alert("Başardım"); });