Some advice please!

I'm still new to dreamweaver and want to create a page on my Web site where visitors can make a payment via paypal but need to check a box (or radio button) to say that they have read and understood this agreement and agree and accept before costs than the rest of the form and your payment button to appear. Anyone have advice on a widget that could do the work or how to go about it?

Really appreciate any help!

Place the rest of the form and the Paypal buy button in a container which is set to display: none in your CSS and receives a unique ID value - say "accepted."

Make the box have this code-

See if it works for you.

Tags: Dreamweaver

Similar Questions

  • Pitch bend wheel on my pc - 300 midi keyboard Roland. The Modulation part works but when I try to pitch bend a note using the same logic of wheel just plays a continuous note. Can someone give me some advice please? Thank you

    Hi, I have a problem with my pitch bend wheel on my pc - 300 midi keyboard Roland. The Modulation part works but when I try to pitch bend a note using the same logic of wheel just plays a continuous note. Can someone give me some advice please? Thank you

    It's a delicate issue... like some patches cannot stipulate pitchbend...

    But to quickly test your pitchbend wheel actually works properly...

    Download the free lunch monitor...

    Snoize: MIDI Monitor

    Run and see if it sees pitchbend data sent by your keyboard... and therefore by logic.

  • book catalog error #1010, u can give me some advice please

    Hi, this is my .fla, some images of book file and catalogue xml with 6 pounds (2 for the political class, romance, and science)

    testing123. Pondi.hr/Books/Catalog.zip

    and you can download it to see and try.

    his simple book subject list dynamically file Ext. xml as you can see on

    http://testing123.Pondi.HR/books/index.html

    problem: when you click on the category on the right button, sometimes nothing happens, you have to click several times until you get result (list of books according to the corresponding category) and after that everything goes well, as you see... when publish you in flash and make this category button by clicking on, you can see error th output that says :

    TypeError: Error #1010: a term is undefined and has no properties.
    function / < anonymous >)
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/onComplete()

    PS: If anyone can give me some advice on this (img probbably charger difficulties) I would be so grateful and blessed

    THIS CODE from the EAST (I'm a bit new to this so have mercy with your comments ):

    Stop();
    flash.net import. *;
    import flash.events.EventDispatcher;
    Import fl.containers.UILoader;
    Import fl.containers.ScrollPane;
    import flash.display.MovieClip;
    import flash.display.Shape;
    import flash.events.MouseEvent;
    import flash.events.Event;

    var myScrollPane:ScrollPane = new ScrollPane();
    var arrUILoaders:Array = new Array();
    var fontStyleAlignL:TextFormat = new TextFormat();
    var fontStyleAlignR:TextFormat = new TextFormat();

    STYLE OF FONT FOR ALL PRICES (ALIGN = LEFT)
    fontStyleAlignL.size = 11;
    fontStyleAlignL.color = 0xAAAAAA;
    fontStyleAlignL.font = "Tahoma";

    FOR THE PRICE (ALIGN = RIGHT) FONT STYLE
    fontStyleAlignR.size = 11;
    fontStyleAlignR.color = 0xAAAAAA;
    fontStyleAlignR.font = "Tahoma";
    fontStyleAlignR.align = 'right ';

    politics_mc.addEventListener (MouseEvent.CLICK, workWantedCat);
    romance_mc.addEventListener (MouseEvent.CLICK, workWantedCat);
    science_mc.addEventListener (MouseEvent.CLICK, workWantedCat);

    function workWantedCat(event:MouseEvent):void {}

    myScrollPane.refreshPane ();

    var xPlacement:int = 10;
    var yPlacement:int = 0;
    var distance: int = 15;

    var wantedCat:String = "";

    Switch (event.target.name) {}
    case "politics_mc": wantedCat = "policy";        break;
    case "romance_mc": wantedCat = "romance";        break;
    case "science_mc": wantedCat = "Science";        break;
    }

    var myXML:XML;
    var url: URLRequest = new URLRequest ("catalog.xml");
    var loader: URLLoader = new URLLoader (url);
    loader.addEventListener (Event.COMPLETE, onLoadComplete);

    function onLoadComplete(event:Event):void {}

    var rowShape:Sprite = new Sprite();

    If {(loader.data)
    myXML = XML (loader.data);
    var books: XMLList = myXML.book;
    }

    for (var i: uint = 0; i < Books.length (); i ++) {}

    If (Books [i].category.toString () == wantedCat) {}

    FORM FOR EACH LINE OF THE BOOK
    rowShape.graphics.lineStyle (1, 0 x 333333);
    rowShape.graphics.drawRoundRect (xPlacement, yPlacement, 820, 15, 15, 15);

    SUPPORT FOR THE LEFT IMG THUMBNAIL
    var newUILoader:UILoader = new UILoader();
    arrUILoaders.push (newUILoader);
    arrUILoaders [i] .source = .photo books [i];
    arrUILoaders [i] .scaleContent = true;
    arrUILoaders [i] .setSize (12,12);
    arrUILoaders [i] .visible = true;
    arrUILoaders [i] .x = xPlacement + 4;
    arrUILoaders [i] there = yPlacement + 2;
    arrUILoaders [i] .buttonMode = true;
    arrUILoaders [i] .addEventListener (MouseEvent.MOUSE_OVER, ToolTip);

    TEXT FIELD FOR THE TITLE OF THE BOOK
    var titleField:TextField = new TextField();
    titleField.text = books [i]. Title;
    titleField.x = xPlacement + 20;
    titleField.y = yPlacement-1;
    titleField.selectable = true;
    titleField.wordWrap = false;
    titleField.setTextFormat (fontStyleAlignL);
    titleField.width = 250;
    titleField.height = 17;

    TEXT FIELD FOR THE AUTHOR OF THE BOOK
    var authorField:TextField = new TextField();
    authorField.text = .author books [i];
    authorField.x = xPlacement + 275;
    authorField.y = yPlacement-1;
    authorField.selectable = true;
    authorField.wordWrap = false;
    authorField.setTextFormat (fontStyleAlignL);
    authorField.width = 150;
    authorField.height = 17;

    TEXT FIELD FOR THE BOOK EDITOR
    var publisherField:TextField = new TextField();
    publisherField.text = .publisher [i] books;
    publisherField.x = xPlacement + 430;
    publisherField.y = yPlacement-1;
    publisherField.selectable = true;
    publisherField.wordWrap = false;
    publisherField.setTextFormat (fontStyleAlignL);
    publisherField.width = 125;
    publisherField.height = 17;

    TEXT FIELD FOR THE YEAR OF THE BOOK
    var yearField:TextField = new TextField();
    yearField.text = books [i]. Year;
    yearField.x = xPlacement + 560;
    yearField.y = yPlacement-1;
    yearField.selectable = true;
    yearField.wordWrap = false;
    yearField.setTextFormat (fontStyleAlignL);
    yearField.width = 50;
    yearField.height = 17;

    TEXT FIELD FOR THE COMMENT BOOK
    var commentField:TextField = new TextField();
    commentField.text = books [i]. Comment;
    commentField.x = xPlacement + 615;
    commentField.y = yPlacement-1;
    commentField.selectable = true;
    commentField.wordWrap = false;
    commentField.setTextFormat (fontStyleAlignL);
    commentField.width = 150;
    commentField.height = 17;

    TEXT FIELD FOR THE PRICE OF THE BOOK
    var priceField:TextField = new TextField();
    priceField.text = [i] books list;
    priceField.x = xPlacement + 770;
    priceField.y = yPlacement-1;
    priceField.selectable = true;
    priceField.wordWrap = false;
    priceField.setTextFormat (fontStyleAlignR);
    priceField.width = 50;
    priceField.height = 17;

    ADD TEXT FIELD CHILDS TO LINE SHAPE
    rowShape.addChild (arrUILoaders [i]);
    rowShape.addChild (titleField);
    rowShape.addChild (authorField);
    rowShape.addChild (publisherField);
    rowShape.addChild (yearField);
    rowShape.addChild (commentField);
    rowShape.addChild (priceField);

    SETTING LINES AND FIELDS TXT PLACEMENT
    yPlacement = yPlacement + distance;
    }
    }

    ROWSHAPE SETTING IN SCROLLPANE
    myScrollPane.source = rowShape;
    myScrollPane.setSize (865, 500);
    myScrollPane.move (30: 20);
    addChild (myScrollPane);
    }
    }

    FUNCTION OF THE TOOLTIP FOR IMG THUMBNAIL MOUSE_OVER
    var bookImg_tt:UILoader = new UILoader();
    function tooltip(event:MouseEvent):void {}
    var imgPath:String = event.currentTarget.source;
    bookImg_tt.enabled = true;
    bookImg_tt.source = imgPath;
    bookImg_tt.scaleContent = true;
    bookImg_tt.startDrag ();
    bookImg_tt.x = mouseX;
    bookImg_tt.y = mouseY;
    bookImg_tt.visible = true;
    event.currentTarget.addEventListener (MouseEvent.MOUSE_OUT, noTooltip);
    addChild (bookImg_tt);
    }

    WITHDRAWAL OF TOOLTIP FOR IMG THUMBNAIL MOUSE_OUT FUNCTION
    function noTooltip(event:MouseEvent):void {}
    bookImg_tt.enabled = false;
    bookImg_tt.source = "";
    bookImg_tt.visible = false;
    removeChild (bookImg_tt);
    }

    TNX A LOT

    The problem occurs when you move a series of books in the list and is located mainly between those lines...

    for (var i: uint = 0; i

    arrUILoaders.push (newUILoader);

    arrUILoaders [i] .source = .photo books [i];

    If you select the category romance everything first, the value of i is already 4 via the closure, when it is finally found, but because you push() shippers in the table, there is no arrUILoader [4]... There is only arrUILoader [0] as it was the first to be pressed.  If you change the line in bold to be...

    arrUILoaders [i] = newUILoader;

    You will have the UILoader your search code in all lines that target arrUILoaders [i] that follow.  Otherwise, using push(), you must target the last UILoader pushed, not one designated by I, which would mean that your table would grow whenever you choose a new category.

  • someone made my iPhone 6 I my some advice please can someone help me find

    HoHow I can find my phone. Ibuy in Israel .my phone company orange uses someone how can I find the track number is using my phone please help me imei nomber * some bady for me can end only Greenwich campiny sim card use now

    Greetings khajuraho India mp,

    I'm sure you must be distressed about losing your iPhone. I know it's hard to lose something as personal.

    The following article describes the steps you should take to try to recover your iPhone but also to secure your data, if the phone can not be recovered - If your iPhone, iPad or iPod touch is lost or stolen.

    Thank you for using communities of Apple support, and I hope you recover your iPhone soon.

    Be well.

  • Scroll bar custom text - need some advice please

    Hello

    I need to add a custom text in my project scroll bar.

    It must operate in IE9 and upwards, as well as Chrome, FF and Safari

    I saw a post where Zaxist had created a tutorial for that but it was done some time ago and when I open the sample files in 2014.1.1 and publish it don't look right.

    Someone asked a nice custom (and customizable) scroll bar cross browser compatible to text in EA 2014.1.1 Please?

    Thank you very much

    Hi - I've finally managed to implement a jQuery solution!

    The CSS solution was not suitable for me because the main client browser is IE and there are very few things you can do to change rather ugly (IMHO) scrollbars IE to change the color.

    I used NiceScroll: jQuery NiceScroll plugin - scroll for desktop, mobile and touch devices
    It's really easy to implement-, I never added a jQuery plugin for EA before and tried with a few others, but it's super simple!

    This also works in IE, Chrome, Safari AND EVEN FIREFOX!

    I write here incase everyone present and future needs Ref

    Instructions for v. 2014.1.1, and later - I don't know how to implement for earlier versions.

    1. Download the plugin jquery.nicescroll.min.js and import it into the actions panel in your EA file
    2. DocumentCompositionReady on the main stage in your document has this line:
    3. SYM.$('put-name-of-text-box').niceScroll ();
    4. Add the name of your text box in the first set of parentheses, or if it is integrated into a symbol, you need to add the path to it.
    5. sym.getSymbol('mySymbol'). $('_put-name-of-text-box').niceScroll ();
    6. You add the style in the 2nd set of square brackets.
    7. The web page NiceScroll (link above) has all the css style options listed.

    Here is an example:

    https://www.dropbox.com/s/afst1yfjjwjp4z0/nicescroll.zip?DL=0

    See you soon

    A

  • Just made anti-virus Malwarebyte s scan on my laptop and need some advice please...

    When the scan has finished a very long list of problems came, there was an option to remove the problems individually or completely, it would be safe just to delete the lot or it might cause problems, I would really advice you can give me...

    Malwarebytes' Anti-Malware is a reputable program that can be implicitly approved, just remove what it found.

  • New system for CS5.5? Some advice please?

    Hi - I'm a new system designed specifically to work with Production Premium CS5.5.

    I'm afraid I know almost nothing about the material.

    Here are some features that the guy in the store said would work?

    You have any comments - it'll work? The best suggestions?

    Thank you very much

    Scott

    Gigabyte GA - X 58-USB3 Intel X 58 Socke1t. 0103 66 on1b5o0a.r00

    Intel Core i7 950 3.06 GHz Socket 13616. 080 M B Cac2h3e2. R00

    6 x Corsair Vengeance DDR3 1600 MHz 4 GB / P6C.30 - 01-2800 M3e0m.o00

    2 x Western Digital WD20EARS 2 TB hard Dr2i.v0e0 SATAII7 85,400

    COOLERMASTER CENTURION 5 II M1I RC-502. D0I0 TOUR 6C0A. S0

    OCZ MODXSTREAM PRO 600W SILENT SLI, 1 A. T0X02 MODUL6A6R. 00

    XFX Radeon HD6770 1 GB GDDR5 PCI-E 2.11. 0G0r aphic1s1 2C.a00

    MS WINDOWS 7 HOME PREMIUM 64 - BIT 1PK 1O. E0M0 85.00

    LG BLU - RAY 10 X LIGHTSCRIBE BDRW I1N. T0E0R NAL RE7T2A. I00

    UK http://3xs.scan.co.uk/Category.asp?SystemMasterCategoryID=14

  • Need some advice please on Adobe CC

    My PC is dying and must be replaced as soon as POSSIBLE,
    until it dies and then lost everything what it is inside
    So I just bought a new PC, and it is coming very soon

    My questions are:
    How long should I stop (remove) the purchase of a PC and move it to another?
    It is true that sometimes people will have 5 days to reinstall the CC?
    What is the best way to do it and fear that painful?

    Thank you

    How long should I stop (remove) the purchase of a PC and move it to another?

    Minutes.

    It is true that sometimes people will have 5 days to reinstall the CC?

    Not in my experience. Never heard of it unless they you encounter a few problems that they can't solve it easily. I've never met any. Fortunately.

    What is the best way to do it and fear that painful?

    On a computer, open any CC application, click Help > Sign Out to disable

    On the new computer, go to creative.adobe.com/products and download.

  • OptiPlex 745 upgrade to Windows 7... some advice please

    Hello everyone and thanks for any help you can provide.

    I have an Optiplex 745 Core 2 Duo running Vista as OEM operating system. Works very well. This machine to the death of love.

    You need to add a USB device that requires Windows 7 media center to the function. He was going to try this one on my Dell GX280 but ti reports seem to indicate that the machine may not be up to the execution of 7.

    Questions: Problems with this process that I should be aware of, such as:

    (1) is it better to clean up the C drive and start from scratch, or upgrading works well.

    (2) the Dell driver site does not list Windows 7 as a driver option. Do the drivers Vista for video, audio, ethernet, etc. work just as well.

    Thank you

    It seems that Windows 7 offers a method to do a cover of clone an external hard drive. Found this feature on my Vista machine, but not on my XP system.

    Who will be my backup recovery for the day came to replace the C drive.

  • Can you please give some advice on the ToolTip used in the new packaged applications

    Hello
    I use apex 4.1 theme 23.
    I would use the ToolTip used in the new packaged app.
    Can you please give some advice or the "Details" on ToolTip, used in the new packaged applications. for example: go live checklist request.
    Once we fly over "Check list items" region. We get the tootip.

    1. how to find the class "detailedStatusList".
    2. how to find "detailedStatusListToolTip();" JavaScript function used in "execute when Page Loads.
    3. is there a tool to generate the source in the region to "check list items.

    I don't know if there are more, I need to know...

    * the tooltip plugin isn't solid...

    Kind regards
    Water

    Good morning, water,

    My goal is to use it in IR for the column notes. I can't show all the notes on the report. so I use RPAD to show only the first words. and the rest should be available by using the ToolTip.

    Fact :D

    You need to use SUBSTR to restrict the notes to a few words, not RPAD.

  • I changed the IR query as follows...

    select
    Deptno,
    Dname,
    Loc,
    substr(notes,1,25) || '<div class="long-notes" style="display:none;">'||notes||'
' as "Notes" from "DEPT"

  • Column attributes: Note > formatting of column > Expression HTML

    <div class="short-notes">#Notes#
  • Edit Page > JavaScript > function and global variables declaration

    function setNotesToolTip() {
         this.xOffset = 0; // x distance from mouse
         this.yOffset = 10; // y distance from mouse
    jQuery("div.short-notes").hover(
         function(e) {
              var insideText = jQuery("div.long-notes",this).html()
              this.top = (e.pageY + yOffset);
              this.left = (e.pageX + xOffset);
              $('body').append('
    ' + insideText + '
    ' ); $('div#notes-tooltip').css("top", this.top+"px").css("left", this.left+"px").delay(500).fadeIn("fast"); }, function() { jQuery("div#notes-tooltip").fadeOut("false").remove(); } ).mousemove( function(e) { this.top = (e.pageY + yOffset); this.left = (e.pageX + xOffset); jQuery("div#notes-tooltip").css("top", this.top+"px").css("left", this.left+"px"); } ) }

  • Edit Page > header and footer > footer text

    <style>
    div#notes-tooltip {
        background-color: #F8F8F8;
        border: 1px solid #AAAAAA;
        border-radius: 3px 3px 3px 3px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
        position: absolute;
        width: 420px;
        padding: 4px;
    }
    </style>
    

  • And finally called setNotesToolTip(); while the page is loading. (Run when the Page loads)

    Kind regards
    Hari

  • Recommendation &amp; advice please

    Hello world

    Need some advice.

    I'm going to create a VM Windows 2008 R2 Standard.

    The customer wants a drive C, D, E and F in windows.

    Would you recommend create 1 vmdk and partition via Windows or would it be better to create a separtate for each required partition vmdk.

    Are there best practices for creating Windows 2008 VM?

    2nd I have issue vcpu and what the best method is to assign.

    We have a HP DL360 G6, watch vi client

    CPU cores: 4 x 2 Ghz CPU

    Processor Socket 1

    Cores per Socket 4

    4 logical processors

    I get really confused with vcpu as ive not been able to find a simple explanation, as I can't get my head around this concept.

    Is there a rule when it comes to assign a virtual machine with more than 1 vcpu.

    The vcpu corresponds to the amount of carrots?

    If I assign a vm vcpu 2 he would use 50% of the available hearts and it will take 2 carrots is available before you start any cpu on task.

    with the current setup, what would you recommend for vcpu config.

    Sorry to ramble on so many things, its just confused.

    Jitla

    I use the more generally separate VMDK since these can be made larger in the future easily if necessary.

    FYI vCPU, try this: http://blog.peacon.co.uk/understanding-the-vcpu/

    http://blog.peacon.co.UK

    Please give points for any helpful answer.

    Unofficial list of transfer USB devices work

  • Update Verizon iPhone 5 new IOS 10 problem: cannot receive/send calls. Shop Verizon says it's an update causing Apple to popular phones to crash all day. Any input or advice, please?

    Update Verizon iPhone 5 new IOS 10 problem: I can't receive/send calls. The store Verizon says it's phones a popular causing update Apple crash all day. Any input or advice, please?

    Don't you say no service at the top?

  • Indicator light charging cable does not go on when connected to power what a lack of cable or battery problem? Advice please. I have

    Indicator light charging cable does not go on when connected to power what a lack of cable or battery problem? Advice please.

    Troubleshooting help here > Apple Portables: Troubleshooting MagSafe adapters - Apple Support

  • I see the files but not access - advice please

    Had some problems of research of file here, would like some advice

    I'm running 2 external hard drive as time machine backups. For some reason, I needed to restore a dropbox folder, I was disconnected.

    I connect hard drive backup 1, and he died. Not a big deal I have same backups on another external hard drive.

    I connect hard drive 2. As I browse the oldest backup, I can see the whole dropbox folder, I need to restore, so all should be good. But as a Time Machine drive, he go right ahead and begins the next backup, and then delete the files very I need, because they are the oldest saved...

    If I look now into the oldest backup Time Machine, the special dropbox folder is empty, but if I search the finder for example ".psd", I can see all the files, I need, but I can't access it. I can see when they are created and how big they are, but that's all, the file itself does not appear to be any reference to it.

    Someone else had this problem and can give me guidance? As a work of related files, I am very eager to get it sorted, so spending on recovery software are definitely on the cards. I have run it through disk drill but it says it can't find all deleted files...

    Would be very grateful for any help or advice

    But as a Time Machine drive, he go right ahead and begins the next backup, and then delete the files very I need, because they are the oldest saved...

    It's that I read, very bad news.

    You should always turn off Time Machine when you're looking for old backup files.

    TM will delete the dropbox because he is no longer on the Mac. Especially if you upgraded the operating system between when you made the backup, and now that you are trying to recover the files.

    The box did not get uploaded to cloud somewhere?

    Unfortunately when files or folders are removed in TM, you can retrieve them. There is no trash as part of mode TM works so he will remove the files forever and recovery is extremely likely.

    If I search the finder for example ".psd", I can see all the files I need, but I can't access it

    TM index can always refer to the file, but it disappeared.

    Did you try just retrieve the dropbox and see what happens?

  • I want to install windows on my new macbook and I need to create a partition. I have not now what size to make my windows partition. Can someone give me some advice?

    I want to install windows on my new macbook and I need to create a partition. I have not now what size to make my windows partition. Can someone give me some advice?

    1. in what year is your Mac?

    2. What is the size of your storage internal?

    3. what version of Windows?

    4 as a general rule 60-100 GB for W8 + / W10 is recommended. You can also create a minimum Windows (30-50 GB) and use an external drive D: for documents applications for portability.

  • Maybe you are looking for