Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 days ago.
Improve this question
I have a list of a button, i'm trying to create a search bar that can find the name of a button, but get stuck. Any advice ?
Here is my code:
Here is my code
I type the name of the button into the search bar but it return blank.
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 days ago.
Improve this question
webpage
so, i just strted learning html and css and im trying to insert a bf image for the while page, but i keep getting these bars np matter if i try to style it in a css page or the index html page. any idea why?
enter image description here
this is what i tried. I tried to do it in the index file and the css file but these bars keep appearing that interfere with the message. please help!
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 4 years ago.
Improve this question
$(document).on("click",".gbut",function(){
console.log(this.getAttribute("data-X"));
Each button has a data-x attribute and I need to be able to get the button that was clicked. Using function(this) doesn't work, and using console.log($(this).getAttribute("data-X")); doesn't work. I've searched a lot but there is no solution for using on("click","class",function()...
You could use jQuery's built-in data method:
console.log($(this).data("x"));
See the jQuery docs
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 4 years ago.
Improve this question
I have a website on blogger and I have posted 7 posts in it.
But, whenever I open my website it shows only 3 posts on my main page and it's not showing 2nd main page.
My website name - www.BlueWOrld.ooo
have a look and please help me to fix it
There are two orange buttons down. You can see newer/older posts.
/I cannot post picture because I haven't enough reputations/
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
I've written a custom upload file script that uses an animated gif while the data is being received. I'd like to stop the animation if a user hits the "stop" button during an upload though.
Is it possible to detect when a user hits "stop"?
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
I have this div with ng-click event. The function works perfectly. But the ng-click-active class is not added to the div.
How is that possible?
Thanks.
ng-click-active will only appear when the ngTouch module is being used. For more information on ngTouch, refer to the docs here: https://docs.angularjs.org/api/ngTouch