0

I have an $ajax->link that calls a controller action; it needs additional parameters contained in a hidden field, say

<div id=my_id>

How can i pass the value of my_id to the $ajax->link?

Mike
  • 530
  • 1
  • 7
  • 21

1 Answers1

1

You need the PHP DOM - its a bit tricky but it does what you want:

PHP Parse HTML code

On the other hand - if you know a bit of JavaScript - you can do away with using the Ajax helper and write the link yourself.

Community
  • 1
  • 1
Shaz MJ
  • 1,785
  • 1
  • 12
  • 25