Is it possible to give a striped effect to a div element's border using jQuery?
Consider the following code snippet:
<style type="text/css">
#panel {
padding: 50px text-align: center;
background-color: #e5eecc;
border: solid 10px #c3c3c3;
}
</style>
<div id="panel">Hello world!</div>
In this example, the border of the div has a solid grey color (#c3c3c3). Instead of a solid color, I want to achieve a striped effect (similar to zebra stripes) with preferably using jQuery.