I am having a bit of a problem with the following:
function loadContent(id) {
$("#featuredDiv").load("featuredDiv.php?list="+id);
);
}
It all works fine when opening the URL with an ID of 21012011 like:
javascript:loadContent(28012011)
but when 04022011 is the id (javascript:loadContent(28012011)
), it seems to change the number to 1057801.
I need the number to be passed through exactly as it is reading the page from a database. Does anyone have an idea what I am doing wrong?
Many thanks in advance!