Jordi Adame

Photos


Astrata


GolST

Sat Jul 12

Cool JS widgets

Do you need a usefull autocomplete?

<script type=”text/javascript” src=”meteora.js?lang=en”></script>

<input type=”text” id=”myAutocomplete” />

<script type=”text/javascript”>

Meteora.uses(‘Control.Autocomplete’);

new Autocomplete(‘myAutocomplete’,
{
‘action’: ‘myJSON_response_script.php’,
‘rowClick’: function(e){
alert(‘content = ‘+e.content+’, index = ‘+e.index);
}
}
);
</script>
Don’t want to mess with confusing/unstable/ugly JS editors?

<script type=”text/javascript” src=”meteora.js?lang=en”></script>

<textarea id=”myTextarea”> </textarea>

<script type=”text/javascript”>

Meteora.uses(‘Control.editor’);

new Editor(‘myTextarea’);

</script>

Want a cool/usefull/greate photo gallery?

<script type=”text/javascript” src=”meteora.js?lang=en”></script>

<script type=”text/javascript”>

Meteora.uses(‘Control.Picbox’);

</script><img src=”1.jpg” class=”picbox-img” /><img src=”2.jpg” class=”picbox-img” />
<img src=”3.jpg” class=”picbox-img” />

Comments (View)