Skip to content Skip to sidebar Skip to footer

Grab Value From Input Field On Sharepoint Infopath Browser Enabled Form

I'm trying to get the value of a textbox into a JavaScript variable. ultimately I'm trying to hide or show different webparts depending on the value in the textbox. I'm piecing the

Solution 1:

you may try..

$("input:text[originalid='V1_I1_T82']").val()

This will return you the value..

Solution 2:

Post a Comment for "Grab Value From Input Field On Sharepoint Infopath Browser Enabled Form"