This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vehicle: { type: 'TYPE', | |
identifierType: 'IDENTIFIER_TYPE', | |
identifier: 'IDENTIFIER', | |
isNew: IS_NEW, | |
cashPrice: 'CASH_PRICE', | |
imageUrl: 'IMAGE_URL', | |
linkBackUrl: 'LINK_BACK_URL' | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
<body onload="loadPlugin()"> | |
... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
... | |
function loadPlugin() { | |
var pluginParameters = { | |
pluginContentDivId: 'PLUGIN_DIV_ID', | |
vehicle: { | |
type: 'TYPE', | |
identifierType: 'IDENTIFIER_TYPE', | |
identifier: 'IDENTIFIER', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
... | |
function loadPlugin() { | |
var pluginParameters = { | |
pluginContentDivId: 'PLUGIN_DIV_ID', | |
vehicle: { | |
... | |
}, | |
deposit: { defaultValue: 'DEFAULT_VALUE' }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body> | |
<div id="ELEMENT_ID"></div> | |
</body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
... | |
<link href="https://services.codeweavers.net/v1/css/Plugin" rel="stylesheet" type="text/css" /> | |
... | |
</head> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script type="text/javascript" src="https://services.codeweavers.net/v2/script/FinancePlugin?key=YOUR_API_KEY"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script type="text/javascript" src="https://services.codeweavers.net/v2/script/FinancePlugin?key=YOUR_API_KEY"></script> | |
<script type='text/javascript'> | |
function loadPlugin() { | |
codeweavers.main({ // Required - object - The function the initialise the plugin | |
pluginContentDivId: 'PLUGIN_DIV_ID', // Required - string - The id of the element that the plugin will be injected into. | |
vehicle: { // Required - object - The vehicle details for the calculation. | |
type: 'car', // Required - string - The type of vehicle. Either; car, lcv or bike. | |
identifier: '57294', // Required - string - The vehicle identifier for this vehicle. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> | |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | |
<html> | |
<head> | |
<title>ClassicASPClient</title> | |
</head> | |
<body> | |
<h1>Classic ASP Example Client</h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> | |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | |
<html> | |
<head> | |
<title>ClassicASPClient</title> | |
</head> | |
<body> | |
<h1>Classic ASP Example Client</h1> |