0

I am trying to analyze the following html code, in full source code I cannot find form tag. When user clicks Buy link user completes the commerce order so how I can find which url is submitted with the following code snippet?

<input type="hidden" name="promo-code-id" value="167">
<a href="javascript:void(0);" class="button-cta with-fullsize cStart   disabled" style="display: yes;" data-id="167">Buy</a>
Ahmet Karakaya
  • 9,899
  • 23
  • 86
  • 141

1 Answers1

0

You can use the Developer Tools from the browser ( like Firebug) they all have a network monitoring panel where you can see the actual requests initiated and to on what URL

iullianr
  • 1,274
  • 10
  • 11