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 7 years ago.
Improve this question
On a page, how can I hide the containing the with the text "Product Tags"?
$('h2:contains("Product Tags")').hide();
See jquery find element by text and :contains()
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 4 years ago.
Improve this question
Hello I just make selectable in jQuery the selectable and click functions done but I need a help or any codes hint to know just how to display item that I clicked on it beside the selectable
// hide element
$("#hideElement").click(function(){
$("h2").hide();
});
// show element
$("#showElement").click(function(){
$("h2").show();
});
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 years ago.
Improve this question
As I am new in UI development ,Kindly help to provide solution. How to change the Browser button name by using jquery.
That would be $('selector').text('some other name')
If your element is an <input>, then you can use $('selector').val('some other name')
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 7 years ago.
Improve this question
I'm curious if a javascript based script can search the embedded website's html and return a true/false value on the existence of ID #foo in its contents
.contents() might be useful for you to read!
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 an "a" tag to which I've applied a background image.
Now I want to hide only the html content of the "a" tag, while I need the background and href address to remain there.
Thanks for the help.
This should work: $("#a_tag_id").html("");
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
My jsfiddle is http://jsfiddle.net/aNreg/44/
Now I can drag and drop some elements, but I want to reject one element from container.
Please check updated code:
http://jsfiddle.net/aNreg/111/
Your divs had the same id shoppingCart1 and droppable function can be added to selector .shoppingCart ol instead of each id.