OK I might be a bit out of my depth here I have a page like this:
Now When Someone clicks the button a fancy sliding page "slides" over the current page, asking for the user to enter his application details.
Now I need to get the clicked Button's value which contains the jobID primary key inorder for me to process the application data...makes sense?
What I would like to know is, since no actual page is loaded and no data gets send, (its only css & jquery providing a "modal" for the application page).
How would I go about finding the value of button. Im not sure where to start really?
- Is it possible getting it with PHP alone? (again keeping in mind no actual data gets send)?
- Can the value be retrieved with AJAX?
- Would it require some sort of completely different language like node.js or similar?
Any tips / advice / references appreciated

