I have a form in a page on a Drupal site. I wondered if it was possible to via URL deliver just the div/box that the form resides in, extracted from the page. E.g. without header / footer and other page elements.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Make HTML file, get the form page using AJAX (jQuery/JS), parse
responseTextto get only desired<div>anddocument.write()it.Using URL http://somepage.com/yourHtmlFile.htm you will receive only that
<div>.