Hi,
I have a php file with jquery button like this:
<button id="btnContact" style="width: 140px" >
and:
$(function() { $( "#btnContact" ).button(); });
$('#btnContact').click(function() { window.location = 'contact_member.php'; });
I want to make the window.location as:
contact_member.php?id= + <?php echo $_GET["id"]; ?>
How can I do this please?