"Load" Method doesn't work in chrome and opera? plz help me.
Hello there,
I have 2 page. one of them,is gallery.html and another one, is index.html . i want to load the content of the gallery page into <div id="content-gallery"></div> in index.html.
I use the fallowing code :
$( 'a#gallery' ).click( function()
{
$( '#content-gallery' ).load( 'gallery.html' );
});
but it works only in IE8,FF, and safari. It doesn't work in chrome and opera (latest version). In opera and chrome, when i click on <a id="gallery">show gallery</a> it show only a bank page.
I use jQuery Library v1.3.2.
How can i fix this problem?
thanks... .