Hola amigos!. Estoy tratanto de aplicar un elemento jquery visto en esta pag http://flowplayer.org/tools/demos/scrollable/vertical.html# . Cuando salvo la pagina en .html funciona pero en .php no. ¿alguien puede ayudarme?? se lo agredeceria mucho.
Aqui el html
<div class="tabla_laempresa">
<div id="actions">
<a class="prevPage">« Back</a>
<a class="nextPage">More pictures »</a>
</div>
<!-- root element for scrollable -->
<div class="scrollable vertical">
<!-- root element for the items -->
<div class="items">
<div>
<img src="http://farm1.static.flickr.com/3650/3323058611_d35c894fab_m.jpg" />
<h3>1. Barcelona Pavilion</h3>
<strong>
The German Pavilion in Barcelona, designed by Ludwig Mies van der Rohe
and built for the International Exposition in 1929.
</strong>
<p>
The Pavilion was not only a pioneer for construction forms with a fresh, disciplined
understanding of space, but also for modeling new opportunities for an exciting
association of free art and architecture.
</p>
<p>
<a href="#">Read more</a> <a href="#">Show in map</a>
</p>
</div>
<div>
<img src="http://farm1.static.flickr.com/3635/3323893254_3183671257_m.jpg" />
<h3>2. Barcelona Pavilion</h3>
<strong>
The German Pavilion in Barcelona, designed by Ludwig Mies van der Rohe
and built for the International Exposition in 1929.
</strong>
<p>
The Pavilion was not only a pioneer for construction forms with a fresh, disciplined
understanding of space, but also for modeling new opportunities for an exciting
association of free art and architecture.
</p>
<p>
<a href="#">Read more</a> <a href="#">Show in map</a>
</p>
</div>
</div>
</div>
</div>
Aqui el javascript
<script>
$(function()
{
$("div.scrollable").scrollable({
size: 2,
speed : 200
});
});
</script>