Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
I have built this sample gallery, but for some reason there is vertical spacing between the images which I want to remove. I can not see any where that will remove the spacing:
http://alexconner.co.uk/gallery_test/
That's a problem with the linebreaks between the li tags
just try that:
<li>img1</li><li>img2</li>
instead of pulling every single tag on every single line
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 8 years ago.
Improve this question
How can I wrap all divs of HTML in this way that the title attributes of them gets labeled below just like files or directories in operating systems in CSS, JS or jQuery?
I am new to these so please I need a little explanation too.
Example:
http://rabwahnetwork.net/wp-content/uploads/2014/03/Image.png
You can use the attr function to get the title:
$(...).attr('title')
And jQuery's wrap function
$(...).wrap()
Here is an example: http://jsfiddle.net/d9HtJ/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 9 years ago.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Improve this question
I have an anchor element <a> and an image inside it. Both of them have JavaScript methods.
<img src="" onclick="someOtherMethod()">
Which Javascript function will be executed first, the function in the image onclick or the function in the link href?
The function inside the onclick attribute of the image will execute first.
You can observe this happening in this jsFiddle demo.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
i am new to javascript, now i am making calculator using javascript, how to display the text using both DIV and INPUT tags. I tried using div but it's not working. how to fix it.
Use this for div
document.getElementById('divid').text="put your text"
for input field
document.getElementById('inputid').value="put your text"
Hope this helps...
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
weird thing.
my http://jsfiddle.net/48Hpa/19/ doesn't work when I write all to html http://jsbin.com/AYEQEJE/1/edit I checked everything . I have all the DOM ready things and so, too.
From your JSbin, it seems you're missing to add jQuery UI css file.
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css"/>
Once added it is working. See the corrected JSBin link
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 9 years ago.
Improve this question
I would like to hide all the children except the one being hovered on. I can't seem to figure out why it won't work - I've included the full sites CSS and everything on this
http://jsfiddle.net/DLjEg/1/
You're using jQuery, but you have the library set to MooTools...switch it to jQuery and it works fine :-)