How to change text popup: "shipping option selected successfully"
hello there,
this site i'm working on:
https://grootaartseuronics.worldsecuresystems.com/index.html
when in cart-page/afrekenen, , choose "afrekenen" without selecting shopping option, pop message:
this messages translated in online-shop.js turtorial: http://forums.adobe.com/docs/doc-1808 after choosing shipping-option/verzend-optie message:
this message not controlled in online-shop.js popup messages can changed. can change message? or there way surpress message?
hope can help,
thanks,
frank
i managed going modifying default windows.alert so:
<script>
aldef= window.alert;
almod = function(txt) {
debugger;
if (txt == "clicked")
{
window.alert = aldef;
alert(txt+ " , more")
window.alert=almod;
}
}
window.alert = almod;
</script>
<input type="button" value="say clicked" onclick="alert('clicked')" />
basically pressing button triggers modified window.alert check alert text is. if text matches "clicked" referts default window.alert, pops alert window, changes modified alert , finishes.
take @ page - www.uktest00.co.cc/modified_alert
would work you?
More discussions in Business Catalyst
adobe


Comments
Post a Comment