1

I have a Parent Page that includes an iframe containing html page with many field. The parent page contains the "Save" button. Now i want to get the values of iframe page while submitting the parent page. How can i access the iframe pages fields in parent page submit?

ramkumar
  • 269
  • 1
  • 3
  • 10

1 Answers1

0

I know that you didn't tag this as jQuery, but if you wanted to use jQuery the way you could grab the contents of the iframe would be:

$('#yourIframe').contents()

More info can be found here.

Jason
  • 51,583
  • 38
  • 133
  • 185