Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

HTML Code help

  • 16-07-2010 11:27pm
    #1
    Registered Users, Registered Users 2 Posts: 772 ✭✭✭


    Hey guys,

    I only know a bit of html so need some help to do the follwowing.

    http://www.explodingmarmalade.com/index.php?option=com_content&view=article&id=59&Itemid=61

    So the above page on my website has a text option.

    I want to replace the number that is being texted to
    "53220118" with a drop down with 3 names that you can text.
    Behind the scenes then each name would have a corresponding number that would be texted using the go sim system.

    Also is there anyway of stopping it from going to the go sim website after you hit send.

    Thanks in advance for the help.


Comments

  • Registered Users, Registered Users 2 Posts: 21,263 ✭✭✭✭Eoin


    Behind the scenes then each name would have a corresponding number that would be texted using the go sim system.

    Something like this:
    [html]
    <option value="1234567">Tom</option>
    <option value="7654321">Dick</option>
    <option value="12344321">Harry</option>
    [/html]
    Also is there anyway of stopping it from going to the go sim website after you hit send.

    You'll need to find out if their API offers any options that you can configure.


  • Registered Users, Registered Users 2 Posts: 772 ✭✭✭floydmoon1


    Cheers man.
    Exactly what was needed


    eoin wrote: »
    Something like this:
    [html]
    <option value="1234567">Tom</option>
    <option value="7654321">Dick</option>
    <option value="12344321">Harry</option>
    [/html]



    You'll need to find out if their API offers any options that you can configure.


  • Registered Users, Registered Users 2 Posts: 172 ✭✭scott.s


    floydmoon1 wrote: »
    Also is there anyway of stopping it from going to the go sim website after you hit send.

    Could be done using AJAX to communicate with the go sim website without actually navigating to it, but this might not be an option if your HTML skills are limited


Advertisement