Hi,
I need Chronoforms to output a single "raw" string, something like "OK"
Adding "&tmpl=component" I disabled all the template part, and this is what I get:
I need just only a string because I have to pass it back to an android app, and the app "does not like" the javascript sections (and the div, at the last line of code...)
How I can clean up the output?
Thanks in advance.
Alessandro
I need Chronoforms to output a single "raw" string, something like "OK"
Adding "&tmpl=component" I disabled all the template part, and this is what I get:
<script type="text/javascript">
if("undefined"==typeof window.jQuery){}else{
var gcore_jQuery_bak = window.jQuery;
var gcore_$_bak = window.$;
}
if("undefined"==typeof gcore_jQuery){}else{
window.jQuery = gcore_jQuery;
window.$ = gcore_$;
}
</script>
<script src="http://192.168.1.100/securtag/libraries/cegcore/assets/jquery/jquery.js" type="text/javascript"></script>
<script src="http://192.168.1.100/securtag/libraries/cegcore/assets/bootstrap/js/bootstrap.js" type="text/javascript"></script>
<script type="text/javascript">
if("undefined"==typeof gcore_jQuery){
var gcore_jQuery = window.jQuery;
var gcore_$ = window.$;
}
if("undefined"==typeof gcore_jQuery_bak){}else{
window.jQuery = gcore_jQuery_bak;
window.$ = gcore_$_bak;
}
</script>
<div class="gbs3">OK</div>
I need just only a string because I have to pass it back to an android app, and the app "does not like" the javascript sections (and the div, at the last line of code...)
How I can clean up the output?
Thanks in advance.
Alessandro