<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" type="text/javascript"></script> <script src="http://code.jquery.com/jquery-latest.js"></script>
lunes, 31 de octubre de 2011
jQuery: CDN
miércoles, 10 de agosto de 2011
javascript: comprobarLong
function comprobarLong(text, LONGMAXIMA) {
var body;
if (text.length > LONGMAXIMA)
{
body = text.substring(0, LONGMAXIMA - 2);
body += "..";
return body;
}
else
{
return text;
}
}
javascript: Array de objetos
var Hostels = {
"selectedHostels" : []
}
Hostels.isHostel = function(id) {
for (i = 0; i < this.selectedHostels.length; i++) {
if (this.selectedHostels[i].Id == id) return true;
}
return false;
}
Hostels.addHostel = function(id) {
var hotel = { "Id": id }
if (this.isHostel(id)) {
this.selectedHostels.pop(hotel);
}
else {
this.selectedHostels.push(hotel);
}
console.log(this.selectedHostels);
}
miércoles, 3 de agosto de 2011
jquery: levantar template con jquery
$.ajax({
url: "../templates/hotel.htm",
cache: false,
success: function(html) {
//$(".listado_hoteles").append(html);
var imprimir = "";
for (var i = 1; i <= 4; i++) {
imprimir = html.replace("@@NRO@@", i);
$(".listado_hoteles").append(imprimir);
}
}
jueves, 21 de julio de 2011
javascript: contador setTimeout
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
<script>
var count = 0;
$(document).ready(function(){
setInterval('contar()', 1000);
});
function contar(){
$("#tiempo").text(count++);
}
</script>
</head>
<body>
<div id="tiempo">0</div>
</body>
</html>
miércoles, 13 de julio de 2011
javascript: Objetos y Colecciones en JavaScript
Hace mucho no posteaba nada.. bueno aca algo de lo que estuve viendo.
function Person(name,edad){
this.name = name;
this.edad = edad;
this.getEdad = function(){
return this.edad;
}
}
var juan = new Person("Juan Manuel", 15);
var ricardo = new Person("Ricardo Levano", 24);
var jorge = new Person("Jorge Adriano", 42);
// alert("hola me llamo" + juan.name + " y tengo " + juan.getEdad() + " años");
var amigos = [];
amigos.push(juan);
amigos.push(ricardo);
amigos.push(jorge);
// alert("tengo " + amigos.length + " amigos"); // 3
var amigosMayoresDeEdad = $.grep(amigos, function(per){
return per.edad > 18;
}); //necesito jQuery para el filter
alert("tengo " + amigosMayoresDeEdad.length + " amigos mayores de edad"); // 2
Suscribirse a:
Entradas (Atom)