I'm capturing user signature writing in base64 string format and allow them to review in fancybox popup for the data they just input. The way i did it is using link () with href set to that data:
<a href="data:image/png;base64,iVBORw0KGgoAAAA...lFTkSuQmCC" class="fancy">click_me</a>
Clicking this link however will trigger "ERR_INVALID_URL", and after drinking much coffee i realize it is due to the target href data has this what seemed to be appended GET param whose value equal to epoch time
...lFTkSuQmCC?_=1412399504179
I wonder how can I get rid of those auto append data. What i already tried is to put $.ajaxSetup({ cache: false }) jsut after document.ready since i thought its relating to some caching feature