Whats the best way to send data to the server and have it run through a php script. Bearing in mind I do not want to have the user redirected to a different page and no response needs to be sent back from the server.
...ammended... I have the following markup.
<div id='0001' class='threadWrapper'>
<div class='littleme'>
I'm hoping to have a click event associated for the .littleme that submits as its variable the ID for its parent (in this case 0001. Something like this???
$('.littleme').click(function{
$.post("path/to/your/script.php", { "threadID":"//value for ID???"});
});