Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 20 hours ago.
Improve this question
I am building a website for the first time. I want to do everything from the bottom up, full stack.
I need to know how to add token trackers in my HTML document. I don't know if I will need any time of backend to make this work and I am guessing I will need to know a bit of JS to make it happen.
My initial thought is to copy the URL from coin gecko somehow but that is all I am good for.
Here is where I am at:
<table>
<tr>
<th>Coin</th>
<th>Price</th>
<th>24hr Mcap</th>
<th>24 hr Vol</th>
</tr>
<tr>
<td>Bitcoin</td>
<td><!--interactive price-->price</td>
<td><!--interactive -->mcap</td>
<td><!--interactive-->vol</td>
</tr>
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I wanted to have animation on my content i searched whole day and got something to work on it.I used same technique as they used everything is seems same still when i scroll my website there is no animation on content after slider.
Demo example
My website
Looks like you're missing the imagesloaded.js file used in the example. You need to reference this script in your code.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
in the link below in the bottom of page we see some box that aligned with the javascript or jquery,and they are not in the same row. this can't be done with css.
and when the page width change they realigned with smomth animation.
any body know how to do that? is there any video to teach this technic?
http://esam.ir/itemView.aspx/562755/%D9%81%D8%B1%D9%88%D8%B4-%DA%AF%DB%8C%D8%AA%D8%A7%D8%B1-%DA%A9%D9%84%D8%A7%D8%B3%DB%8C%DA%A9-%D8%A7%DB%8C%D8%B1%D8%A7%D9%86%DB%8C.htm
thanks
There is an easy library called Masonry, have a look at that, they have some decent documentation and it works exactly like you want it. But going into the details of how its done is beyond the scope of a stack overflow post.
http://masonry.desandro.com
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm creating a PHP website where when you put a text in a textarea, and the content of the input will be put in a table in real time to have a preview of the result.
Is there a way to make this possible? I don't have any idea how to do this. I've found a lot of sites on the internet like "Real Time HTML Editor", "Instant HTML" and they do exactly what I want. Is there any JavaScript that could make this possible?
Try this
<table>
<tr>
<td id="real"></td>
</tr>
</table>
<textarea id="txt"></textarea>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('#txt').keyup(function(){
$('#real').html($(this).val());
});
});
</script>
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I created a page like this before, but I put the data from the database on a table because it don't have so many columns. But this time, I'm going to need a scroll bar bellow because there are so many columns I need to display. I don't know if I'm going to use CSS here or JavaScript. Please help thanks btw.
Try this:table{width:100%;white-space : nowrap;overflow-x: scroll;} You can set height and width of your choice.
<div style="width=300px;overflow:scroll">
<table></table>
</div>
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I am learning to design a website for my CS department as in my project.
i want to provide with a slideshow of department resources or say snapshots.
I wish to know how to make the slideshow, and how to position images in such a way that it fits all browsers widths perfectly.
Please Help !
To get images to fit all widths, use width: 100%; in your css. As the comments suggest, by asking SO you will be copying from the internet, so if you really don't want to do that, don't read my answer =P