View Single Post
  #2 (permalink)  
Old 06-22-09, 08:33 AM
Nico's Avatar
Nico Nico is offline
Community Leader
 
Join Date: Sep 2005
Location: Spain
Posts: 8,074
Thanks: 11
Thanked 88 Times in 83 Posts
Code:
var url = window.href.toString();
var id  = url.match(/\?page=(\d+)/);

if (id[1])
{
    alert('The ID is: ' + id[1]);
}
else
{
    alert('No ID found');
}
... untested, but should work.
Reply With Quote