[Plugin: Calculated Fields Form] Fieldname value into another form
-
There was a thread about this already but it doesn’t work for me so I decided to make a new thread in hopes that it could be better explained.
https://wordpress.org/support/topic/insert-fieldname-value-in-html-content?replies=5#post-8152807I want to select specific fields in my “Calculated Fields Plugin” form and place them in a textbox or div of some sort. I have a table in my HTML as follows:
<table> <tr> <td>My field label</td> <td id="f1"></td> </tr> </table>I have placed this function inside “Calculated Fields Form” set equation area:
(function(){ jQuery( '#f1' ).html(fieldname1); })()My problem is, it doesn’t recognize any of the fieldnames. I have tried different fieldnames in my form and it doesn’t work. Placing a constant string such as “hello” works fine. There are values written on these fields so this should not be returning NULL values.
Any help on this would be appreciated!
The topic ‘[Plugin: Calculated Fields Form] Fieldname value into another form’ is closed to new replies.