click event on jQuery doesn't work


Creep to death

I have printed the echo with php of the input element and I need to get the click event id using jquery. Below is the code I am trying to get

API.php (reflects elements to index.php using ajax):

echo"<input type='submit' id='something' value='accept me'/>";

index.php (need to get id="something" in click event):

$("#something").click(function(){
    alert("hi");
    //doesnt work 
});

Why doesn't it work? please suggest

Nana Partykar

Write your own onclick()functions input. will work.

For more information, click Add . Click the submit button - Stack Overflow

<form ... >
    .
    .
    <input type='submit' id='something' onclick="return showValue();" value='accept me'/>
</form>

<script>
function showValue() {
    alert('hi');
    return false;
}
</script>

Related


jQuery click event doesn't seem to work

Akahne Saikyo I'm practicing making a simple calculator using jQuery, and I think the code itself is pretty simple, but no matter what I do, absolutely nothing happens, as if there's no js file linked to beging. Here is the jQuery code: function ud(n){

jQuery .off("click") event doesn't work

basic need help This has been bugging me for hours and still confused as to why it doesn't work... When I use table.off("click");it , it also unbinds the click event of the first child without id=multi. var table = $("table#datatable") var button = $(".generat

jQuery click event doesn't work

mightyspaj3 I have this simple jQuery click event and for some reason it's not working. works, I can use this inside the $(document).ready(function() {});alert; however the actual click event doesn't work. Thanks in advance and please take it easy on me as I d

MathJax doesn't work in Jquery .click event

Glagas Incoming MathJaxJquery .clickevent doesn't work inside but outside that function. Run the code snippet to see the effect. $('#math').click(function(e){ e.preventDefault(); $("#result").html("$$ MathJax inside .click event doesn't work $$"); }); //outsid

jQuery Click event doesn't work on mobile

lkw3274 I'm trying to make the following JSFiddle work for tablet/mobile (eg "touch" and "click"). https://jsfiddle.net/lkw274/7zt1zL0g/87/ <div class="user-navigation"> <a class="mobile-menu-new" href=""><span></span>Menu</a> </div> $(document).ready

click event on jQuery doesn't work

Creep to death I have printed the echo with php of the input element and I need to get the click event id using jquery. Below is the code I am trying to get API.php (Echo elements to index.php using ajax): echo"<input type='submit' id='something' value='accept

JQuery click() event listener doesn't work

it consolidates I'm trying to get a small project going, but I'm stuck at a very annoying thing. $(document).ready(function() { $("#search-button").click(console.log('hello')) }); As you can see, I'm targeting a search button using the id, and search-buttona

jQuery .off("click") event doesn't work

basic need help This has been bugging me for hours and still confused as to why it doesn't work... When I use table.off("click");it , it also unbinds the click event of the first child without id=multi. var table = $("table#datatable") var button = $(".generat

jQuery click event doesn't seem to work

Akahne Saikyo I'm practicing making a simple calculator using jQuery, and I think the code itself is pretty simple, but no matter what I do, absolutely nothing happens, as if there's no js file linked to beging. Here is the jQuery code: function ud(n){

MathJax doesn't work in Jquery .click event

Glagas Incoming MathJaxJquery .clickevent doesn't work inside but outside that function. Run the code snippet to see the effect. $('#math').click(function(e){ e.preventDefault(); $("#result").html("$$ MathJax inside .click event doesn't work $$"); }); //outsid

jQuery's click event doesn't work

username I can't find the reason why my code is not working. When I click on the generated element, the alert doesn't fire. Here is a fiddle : http://jsfiddle.net/pZAdP/ and code <button id="addMenuItem">Add Menu Item</button> <div id="content"></div> functio

jQuery's click event doesn't work

Alvin Karimi I wrote this code, I need to use jquery to handle click event, but it doesn't work in any browser, when I click on any element, nothing happens. div has no z-index in CSS; The vulnerability "news" element is dynamically added this is the html code

jQuery code for click event doesn't work

Kleber Mota In my current spring project I have a jsp page with the following: <c:url value="/${command['class'].simpleName}/index" var="index"/> <button type="button" class="btn btn-default action" data-url="${index}">Voltar</button> <c:url value="/${command

jQuery's click event doesn't work

username I can't find the reason why my code is not working. When I click on the generated element, the alert doesn't fire. Here is a fiddle : http://jsfiddle.net/pZAdP/ and code <button id="addMenuItem">Add Menu Item</button> <div id="content"></div> functio

jQuery code for click event doesn't work

Kleber Mota In my current spring project I have a jsp page with the following: <c:url value="/${command['class'].simpleName}/index" var="index"/> <button type="button" class="btn btn-default action" data-url="${index}">Voltar</button> <c:url value="/${command

jQuery code for click event doesn't work

Kleber Mota In my current spring project I have a jsp page with the following: <c:url value="/${command['class'].simpleName}/index" var="index"/> <button type="button" class="btn btn-default action" data-url="${index}">Voltar</button> <c:url value="/${command

jQuery function .on() doesn't work with "click" event

ihor I'm using MS Dynamics CRM 2013 and I have the following problem: When I want to add an event handler to the "Documents" button in the navigation pane, The jQuery function .on() does not work with the "click" event. It works fine with "mouseover" or "mouse

Click event by name doesn't work in jQuery

Lockx I'm stuck with a small problem. <a href="#" class="btn btn-small btn-danger" name="ignore" id="45"><i class= "fa fa-close"> </i> Ignore </a> <a title="ignore1" data-original-title="ignore1" id="14" name="ignore1" class="btn btn-small btn-danger" href="#

jQuery click event doesn't work

mightyspaj3 I have this simple jQuery click event and for some reason it's not working. works, I can use this inside the $(document).ready(function() {});alert; however the actual click event doesn't work. Thanks in advance and please take it easy on me as I d

jQuery Click event doesn't work on mobile

lkw3274 I'm trying to make the following JSFiddle work for tablet/mobile (eg "touch" and "click"). https://jsfiddle.net/lkw274/7zt1zL0g/87/ <div class="user-navigation"> <a class="mobile-menu-new" href=""><span></span>Menu</a> </div> $(document).ready

Click event in jQuery doesn't work

Anna Glam I got a div with default class 'unlock' and a text called 'UNLOCK'. When I click on it, it says "UNLOCK" while removing the "unlock" class and adding the "lock" class. html <div class='unlock'>UNLOCKED</div> this work $('.unlock').click(function(){

jQuery click event doesn't work

mightyspaj3 I have this simple jQuery click event and for some reason it's not working. works, where I can use the alert; but the actual click event doesn't work.$(document).ready(function() {}); Thank you in advance and please take it easy on me as I don't ha

jQuery Click event doesn't work on mobile

lkw3274 I'm trying to make the following JSFiddle work for tablet/mobile (eg "touch" and "click"). https://jsfiddle.net/lkw274/7zt1zL0g/87/ <div class="user-navigation"> <a class="mobile-menu-new" href=""><span></span>Menu</a> </div> $(document).ready

jQuery click event doesn't seem to work

Akahne Saikyo I'm practicing making a simple calculator using jQuery, and I think the code itself is pretty simple, but no matter what I do, absolutely nothing happens, as if there's no js file linked to beging. Here is the jQuery code: function ud(n){

jQuery .off("click") event doesn't work

basic need help This has been bugging me for hours and still confused as to why it doesn't work... When I use table.off("click");it , it also unbinds the click event of the first child without id=multi. var table = $("table#datatable") var button = $(".generat

MathJax doesn't work in Jquery .click event

Glagas Incoming MathJaxJquery .clickevent doesn't work inside but outside that function. Run the code snippet to see the effect. $('#math').click(function(e){ e.preventDefault(); $("#result").html("$$ MathJax inside .click event doesn't work $$"); }); //outsid

MathJax doesn't work in Jquery .click event

Glagas Incoming MathJaxJquery .clickevent doesn't work inside but outside that function. Run the code snippet to see the effect. $('#math').click(function(e){ e.preventDefault(); $("#result").html("$$ MathJax inside .click event doesn't work $$"); }); //outsid

click event on jQuery doesn't work

Creep to death I have printed the echo with php of the input element and I need to get the click event id using jquery. Below is the code I am trying to get API.php (reflects elements to index.php using ajax): echo"<input type='submit' id='something' value='ac

Click event in jQuery doesn't work

Anna Glam I got a div with default class 'unlock' and a text called 'UNLOCK'. When I click on it, it says "UNLOCK" while removing the "unlock" class and adding the "lock" class. html <div class='unlock'>UNLOCKED</div> this work $('.unlock').click(function(){