javascript - Switching from jquery live to on doesn't work
Get the solution ↓↓↓Solution:
You're forgetting the closing)
on each of these. the.on()
functions work fine when the syntax is correct.
Existing elements -
$(".antennaCursor").on("click", function() {
console.log("Hi");
});
Event delegation -
$(document).on('click', '.antennaCursor', function() {
console.log('Hi');
});
Many usedocument
as the place to catch the bubbled event, but it isn't necessary to go that high up the DOM tree. Ideally you should delegate to the nearest parent that exists at the time of page load.
Answer
Solution:
you'd missed the closing
);
works now.
$(".antennaCursor").on("click", function() {
alert("Hi");
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="antennaCursor">Click</div>
Answer
Solution:
If the element is dynamically added you will want this syntax to make sure the element triggers the function.
$(document).on('click', 'selector', handler);
This is the same as your last suggestion but withon
instead oflive
. In addition you are missing the final)
So in your case would be:
$(document).on("click", ".atennaCursor", function() {
alert("Hi");
})
Answer
Solution:
It's just a typo. Other answers are not 100% correct, they don't really work in the same way as "live" This should work as expected, with events now and in the future
$(document).on("click", ".antennaCursor", function() {
alert("Hi");
});
Share solution ↓
Additional Information:
Link To Answer People are also looking for solutions of the problem: object of class stdclass could not be converted to string
Didn't find the answer?
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Similar questions
Find the answer in similar questions on our website.
Write quick answer
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.
About the technologies asked in this question
JavaScript
JavaScript is a multi-paradigm language that supports event-driven, functional, and mandatory (including object-oriented and prototype-based) programming types. Originally JavaScript was only used on the client side. JavaScript is now still used as a server-side programming language. To summarize, we can say that JavaScript is the language of the Internet.
https://www.javascript.com/
JQuery
JQuery is arguably the most popular JavaScript library with so many features for modern development. JQuery is a fast and concise JavaScript library created by John Resig in 2006. It is a cross-platform JavaScript library designed to simplify client-side HTML scripting. Over 19 million websites are currently using jQuery! Companies like WordPress, Facebook, Google, IBM and many more rely on jQuery to provide a kind of web browsing experience.
https://jquery.com/
HTML
HTML (English "hyper text markup language" - hypertext markup language) is a special markup language that is used to create sites on the Internet.
Browsers understand html perfectly and can interpret it in an understandable way. In general, any page on the site is html-code, which the browser translates into a user-friendly form. By the way, the code of any page is available to everyone.
https://www.w3.org/html/
Welcome to programmierfrage.com
programmierfrage.com is a question and answer site for professional web developers, programming enthusiasts and website builders. Site created and operated by the community. Together with you, we create a free library of detailed answers to any question on programming, web development, website creation and website administration.
Get answers to specific questions
Ask about the real problem you are facing. Describe in detail what you are doing and what you want to achieve.
Help Others Solve Their Issues
Our goal is to create a strong community in which everyone will support each other. If you find a question and know the answer to it, help others with your knowledge.