Within my tab bar while at the base url, I'm trying to link to this href tag:
- <a href='detail.html?id=slide&place=" + data.Places[i].id + "' data-transition='slide' class='ui-link-inherit'>" + data.Places[i].name + "</a>
When I click the button, it will append the above href tag to the end of the url, like so:
I've tried also putting the entire desired location into the href tag - for example,
But instead, I get the same appending issue:
Does anyone know how to get around this? I thought about just making the link call a javascript function and handle the desired url there, but would like to avoid doing so if possible. Thank you in advance, this has been driving me crazy!