I have what is a simple script to retrieve a simple message (string) from server and it appears there is no response from server, so I am wondering if JQuery is even firing off a request at all? The server side script (PHP) is so simple, basically it is just a plain echo. One moment the script is working in FF and the next moment it ain't, as for the other mainstream browsers, you can forget about it! Here is the JQuery script below, do you see anything I'm missing (considering I am new to JQuery / AJAX / Still learning)? Thanks. $(document).ready( function() { $( '.enlarge' ).click(function( e ) { e.preventDefault(); var img = $( this ).children( 'img' ).attr( 'alt' ); var url = '/pages/message/' + img + '/'; $.ajax({ url: url, data: '', cache: false, dataType: 'text...