JAZconvert Example - No Link

JAZconvert can be implemented without a hyperlink on the converted amount. However doing this involves using a couple of other JAZconvert functions to ensure visitors can choose their currency.

To give your visitors an option to select their preferred currency you can use the JAZlink. This will allow you to include a link directly from your web pages. The jazlink() function displays a message hyperlink on your web site page allowing your visitor to choose/change their currency.
An example of this would be <script>jazlink('Choose Currency')</script> This is the output:

There are two additional JavaScript functions available if you want them called visitorCurrency and visitorCurrency2. These functions return the three and two letter country codes of the visitors home country.
An example use of this function might be: "Hello I have detected that your currency is: <script>document.write(visitorCurrency())</script>" which would result in: "Hello I have detected the your currency is: ".

The function visitorCurrency function returns the 3 letter code and visitorCurrency2 returns the 2 letter code.
An example to call the visitorCurrency2 call is: "Hello I have detected that your currency is: <script>document.write(visitorCurrency2())</script>" which would result in: "Hello I have detected the your currency is: ".


Example page using nolink

Prices currently displayed in:

Product Price
Step Ladder
Paint Brush
Drill Set

Code behind this example

In Head <SCRIPT LANGUAGE="JavaScript" SRC="http://au.con-ert.com/cur.js?domain=jazconvert.com&nolink=1"></SCRIPT>
To display current currency <script>document.write(visitorCurrency())</script>
To display link <script>jazlink('Click here to choose your currency')</script>
To display converted amount <script>jazconvert(250)</script>