yapamak istedim şey yukarıdaki adres satırındaki id yi js dosyasına almak yani
function pageload(hash) {
// hash doesn't contain the first # character.
if(hash) {
// restore ajax loaded state
jQuery("#load").load(hash+".jsp");
document.title = "Pillifare.Com | " + hash;
} else {
// start page
jQuery("#load").empty();
}
}
kodum bu kodumdaki jQuery("#load").load(hash+".jsp"); kısmında .jsp den sonra id=12 yazdırmak istiyorum senin dedigne göre böyle olacak sanırım
function pageload(hash) {
// hash doesn't contain the first # character.
if(hash) {
var pieces = window.location.hash.substr(1).split("?");
var ajaxURI = pieces[0] + ".jsp?" + pieces[1];
// restore ajax loaded state
jQuery("#load").load(hash+".jsp"+ajaxURI);
document.title = "Pillifare.Com | " + hash;
} else {
// start page
jQuery("#load").empty();
}
}
/(::)(::)/
|