View Single Post
  #2 (permalink)  
Old 06-22-09, 08:33 AM
Nico's Avatar
Nico Nico is online now
Community Leader
 
Join Date: Sep 2005
Location: Spain
Posts: 7,536
Thanks: 5
Thanked 20 Times in 18 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