I have an array of unknown size in perl generated by some other perl module. Now, precisely I want to find if a value passed to a jquery function exists in the perl array or not.
Is there a way I can do an element by element comparison of the input value against each value in perl array?
I looked around and looks like I can access perl array in jquery by providing the index but we don't know the size of the array. So I don't know when to stop.
My mason code looks something similar to:
<%perl>
my @testArray = [call to some other perl module to get the values]
</%perl>
<script type="text/javascript">
function checkIfValExistsInTestArray(val) {
// Code to test if "val" exists in "@testArray". Returns boolean true/false.
}
</script>