How to get client ip address with jQuery
$.getJSON("http://jsonip.appspot.com?callback=?",function(data){
alert( "Your ip: " + data.ip);
});
How to parse XML with jQuery
file.xml:
<?xml version="1.0" ?>
<result>
<item>
<id>1</id>
&l...
read more
How to hide all children div except a specific one with jQuery?
$('#target div:not(#exclude)').hide();
//or
$('#target').children().filter(':not(#exclude)').hide();
Detecting when a div’s height changes using jQuery
$('element').bind('resize', function(){
alert( 'Height changed to' + $(t...
read more
Check if cookies are enabled
$(document).ready(function() {
var dt = new Date();
dt.setSeconds(dt.getSeconds() + 60);
document.cookie = "cookietest=1; expires=" + dt.toGMTString();
var cookiesEnabled = document.cookie.indexOf("cookietest=") != -1;
if(!cookiesEnabled){
...
read more
How to refresh the src of an image with jQuery?
$(imageobj).attr('src', $(imageobj)
.attr('src') + '?' + Math.random() );
How to see if an image is loaded or not with jquery
var imgsrc = 'img/image1.png';
$('<img/>').load(function () {
alert('image loaded');
}).error(...
read more