I hereby claim:
- I am ronv on github.
- I am ronaldsvilcins (https://keybase.io/ronaldsvilcins) on keybase.
- I have a public key ASCrJsgWlUX2c5JeiOMYQp-HJWSaj7RfAjVIeaQdDuK7OQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
$(function(){ | |
var flickrID = '47383510@N04'; | |
$.getJSON('http://api.flickr.com/services/feeds/photos_public.gne?id=' + flickrID + | |
'&size=b&lang=en-us&format=json&jsoncallback=?',function(data){ | |
$.each(data.items,function(i,item){ | |
var img = (item.media.m).replace('_m.jpg','_b.jpg','_d.jpg'); | |
$('<div class="item"><img src="'+img+'"/></div>').appendTo('body'); | |
}); | |
}); | |
}); |
setInterval(function(){ | |
$(".user-actions-follow-button").click(); | |
},10); |
if( document.Anketa.vards.value == "" ) | |
{ | |
alert( "Lūdzu ievadiet vārdu, uzvārdu!" ); | |
document.Anketa.vards.focus() ; | |
return false; | |
} | |
if( document.Anketa.personaskods.value == "" ) | |
{ | |
alert( "Lūdzu ievadiet personas kodu!" ); | |
document.Anketa.personaskods.focus() ; |
@-webkit-keyframes blink { | |
0% { opacity: 0 } 50% { opacity: 0 } | |
50.01% { opacity: 1 } 100% { opacity: 1 } | |
} | |
blink { | |
-webkit-animation: blink 0.7s infinite linear alternate; | |
-webkit-font-smoothing: antialiased; | |
font-size: 50px; | |
} |
<div class="navbar"></div> |
<marquee style="height:20;width:200" scrollamount="200" scrolldelay="500">BLINK MARQUEE</marquee> |
<form action="http://maps.google.com/maps" method="get" target="_blank"> | |
<label for="saddr">Location</label> | |
<input type="text" name="saddr" /> | |
<input type="hidden" name="daddr" value="New York" /> | |
<input type="submit" value="Get directions" /> | |
</form> |