在jpeg中单击2调用脚本

I do facebook mobile advertising and when a mobile user clicks my ad (JPEG) it takes them to a url where I have a mobile form with a click to call button http://www.eduloannetwork.com/mobile. Making a 2 step process. I am looking for someone who can code the click to call function in to the JPEG making it a 1 step process.

Is this possible?

Based on the landing page you showed us, all the button on your landing page is doing is this:

<a class="phonebtnimg" href="tel:18557302071">
    <img src="images/callus.png" alt="Tap to Call" border="0">
</a>

If that's what you want to happen on the first click, then just change the link for the first page to have href="tel:18557302071" instead of a link to your page.

The phone would obviously have to process this URL appropriately, but apparently you think your 2nd page is already doing that for you so, if it is, then you can just move the same link from the 2nd page to the first page and skip the intermediate page entirely.