I think a workaround is for me to save all messages on the get listing to the database and sort them there for now, though it would be helpful to just grab the ones accociated with the users twilio assigned number. For now I can filter the list based on the user. Here is what I have to get the messages and then copy them to database. my problem is that I am getting a blank unsure how to getting the following for my twilio value: [object Object]. So I have something wrong.
var items = jQuery('[name="mobilelistitem_7"]');
for (var i = 0; i < items.length; i++) {
Code: Select all
var item = jQuery(items[i]).closest('[name="mobilelistitem_7"]');
localStorage.setItem("twilio", item);
storemessage.execute();
}