Javascript popup insert within the body

simple question im sure, i have a basic javascript
<script type="text/javascript">
<!--
alert ("This is a JavaScript ALERT box.")
// -->
</script>
however it needs to be inserted in the <head> however this is locked within the template and if I insert it there it will appear on all the pages under the template, i only what it to appear on one page.
thanks in advance

You can insert it as the first item after your <body> on that page and it should work the same way as in the header.

Similar Messages

  • In Yosemite Mail, there is an issue where the signatures no longer toggle as in the past. If you change the existing signature, it just adds the new one vs replacing it within the body of the message. Thoughts?

    In Yosemite Mail, there is an issue where the signatures no longer toggle as in the past. If you change the existing signature, it just adds the new one vs replacing it within the body of the message. Thoughts?

    Hi howe.sc,
    When I checked for how signatures in Yosemite work, I found this.
    Mail (Yosemite): Include signatures in messages
    Delete a signature from a message: Select the signature, then press the Delete key.
    Replace a signature in a message: Delete the existing signature, then add a different signature.
    That sounds similar to what you are describing.
    Take care,
    Nubz

  • I would like to include a photo within the body of the email, not as an attachment. How do I do this?

    I receive emails where a photo in included in the email. When I send emails with Firefox, I have to attach the photo as an attachment. How can I include the photo in the body of the email?

    Firefox doesn't do email, it's strictly a web browser.
    If you are using Firefox to access your mail, you are using "web-mail". You need to seek support from your service provider or a forum for that service.

  • Recipients of my email have been getting a bunch of scrambled code, letters and symbols, inserted into the body of my email - preceded by "span.IP". How to fix?

    Some recipients of my emails have been getting a bunch of code, letters and symbols, inserted into the email preceded by "span.IP". What is causing this and how can I fix it? Also (may be related) when i start up Thunderbird, I get the following error message:
    Secure connection failed
    live.mozillamessaging.com uses an invalid security certificate. The certificate is not trusted because no issuer chain was provided. (Error code: sec_error_unknown_issuer)
    This could be a problem with the server's configuration, or it could be someone trying to impersonate the server.
    If you have connected to this server successfully in the past, the error may be temporary, and you can try again later.
    Or you can add an exception…

    Browser Safeguard apparently attempts to intercept your secure connection to the server, so just uninstall it. Reboot your computer, and run a malware check.
    It's also possible that it issued certificates for secure sites you visit. Those self signed certs could then be used by IE, so you should get rid of them as well.
    In IE under Internet Options - Content tab click on Certificates. It opens to the Personal tab. Look for certificates issued by DO_NOT_TRUST_FiddlerRoot. Those are the ones created by Browser Safeguard.
    Both, Thunderbird and Firefox use their own certificate store independent from the Windows certificate store. So they should not be affected by those certs.
    For the future watch out for additional software being sneaked in when installing a program.

  • How do I view a pdf files online within the body of the browser

    I am having some issues interacting with pdf documents online with a website called Equator.com. I am using the latest version of of Firefox (10.0) and running Mac OS Lion. What can be done to remedy this problem?

    Hi richardconte,
    Have you looked at the Knowledge Base article [[Opening PDF files within Firefox]]? First you will need to install a PDF Plugin. Then you'll need to tell Firefox to open the PDF file in the browser. The article covers all of this information and provides troubleshooting steps in case you run into any issues.
    Hopefully this helps!

  • Execute immediate ... using ... with type within the body of procedure

    Hello,
    I have the following snippet of code and structures used by him:
    /* begin code */
    create or replace type SET_OF_PRODSET_TYPE is table of number;
    create table temp_ (aa number);
    create or replace procedure proc1
    set_of_prodset in set_of_prodset_type,
    use_class_info in int
    ) is
    sql_stmt_select varchar2(3000);
    begin
    sql_stmt_select := 'insert into temp_ (aa) ' ||
    'select to_number(t.column_value) ' ||
    'from table(cast(set_of_prodset as set_of_prodset_type)) t ';
    execute immediate sql_stmt_select
    using 1;
    end proc1;
    /* end code*/
    In an attempt to perform this procedure, I receive the error message: 'ORA-00904: "SET_OF_PRODSET": invalid identifier'.
    how can I solve this problem?

    sql_stmt_select := 'insert into temp_ (aa) ' ||
    'select to_number(t.column_value) ' ||
    'from table(cast(set_of_prodset as set_of_prodset_type)) t ';
    execute immediate sql_stmt_select
    using 1;
    From what I can tell so far (I recommend you post code in code tags), there are no bind variables in the sql_stmt_select variable. If you want the "set_of_prodset" to be bound you should place a ":" (colon) in front of the set_of_prodset text in the sql_stmt_select string. In addition, I think the "using 1" syntax may be incorrect, although I could be wrong. You may want to replace the 1 with set_of_prodset. See below:
    sql_stmt_select := 'insert into temp_ (aa) ' ||
    'select to_number(t.column_value) ' ||
    'from table(cast(:set_of_prodset as set_of_prodset_type)) t ';
    execute immediate sql_stmt_select
    using set_of_prodset;Hope this helps!

  • Javascript popup hides behind the Flex

    Hi,
    I am using a Flex in our asp.net application. When a popup
    open the it hides behind the flex. i used wmode transparent when
    load the flex but it is not properly running. But when i deploy my
    application in my local machine or local LAN then it is working. it
    also working in firefox but in case of IE 7 when i deploy the site
    in our server and accessing through internet the it is gone behind
    the flex,but in case of firefox it is running perferctly.
    Thanks

    This forum is for Flex 1.5, and is all but abandoned.
    Post your question in the Flex General discussion forum
    instead.
    Tracy

  • Calling another method in the class from within the body of a method Im wri

    Hello out there.
    I have a question. I keep getting an error that reads as follows:
    1 error found:
    File: /Users/matthieubell/Academia/University of Waterloo/CS 125/L06/CreditCard.java [line: 80]
    Error: double cannot be dereferenced
    I think it is occuring because I am trying to call a method on an instance variable, which is not an object. But how do call a method I have already written, on another method I am writing in the general sense. I could make a particular object, but Im not shure that would get me the same result. I want to be able to call the method calcMinPayment on the instance variable currentBalance to wirte the method makePayment.
    I have a class CreditCard
    with the instance variables "private double currentBalance = 0; "
    public double calcMinPayment()
    // Add code here
    double minimumPayment;
    if (currentBalance < 50)
    minimumPayment = currentBalance/10;
    else
    minimumPayment = 50;
    return minimumPayment; // Replace this statement
    * This method will decrease the current balance on the credit card if
    * this payment meets or exceeds the minimum payment amount.
    * pre: paymentAmt > 0
    * post: The current balance should be decreased by paymentAmt if
    * paymentAmt >= the minimum payment amount. Otherwise, the payment
    * will not be recorded and an appropriate error message should be
    * displayed.
    public void makePayment(double paymentAmt)
    // Add code here
    double minimumPaymentAmount;
    minimumPaymentAmount = currentBalance.calcMinPayment();
    if (paymentAmt < minimumPaymentAmount)
    System.out.println("Sorry, but your payment must exceed the minimum payment amount.");
    System.out.println("This payment has not been recorded, please try again.");
    else
    this.currentBalance = currentBalance - paymentAmt;
    thanks for youre help
    -Matthieu

    'calcMinPayment' takes no arguments, uses a member variable (currentBalance) to compute a local variable 'minimumPayment' which it returns, ie, sends back to the caller. So you can call 'calcMinPayment' at any time.
    minimumPaymentAmount = calcMinPayment();

  • How do I send an attachment (photo) without it inserting itself into the body of the email?

    Under attach, I selected file and then selected a photo. It appeared as an attachment outgoing, however, it was received inserted in the body of the email. Thank you in advance.

    I think this depends on the recipient's mail client. Thunderbird, for instance, when used to view a received message with a picture attachment, will display the picture appended to the message. To a casual glance it would appear to be embedded into the message.
    Send your messages using plain text (not HTML) and images ''cannot'' be embedded. If they appear to be embedded then it's the recipient's mail client to blame and therefore beyond your control.
    You could zip your pictures to force them to be processed as attachments at the receiving end. ;-)

  • Lately, I'm unable to paste any image into the body of any email I compose. I did not have this issue before today. Please help.

    Could this issue with not being able to copy and paste any image within the email body, be virus or malware related?
    Though I don't think I have any virus problems. Also I have all the latest updates for Thunderbird.
    I read some suggestions posted elsewhere and tried those but none of these worked :
    DID NOT WORK #1 :
    (If your Thunderbird email message is displaying strange-looking code (tags) after each link, images are missing (it looks like images have been stripped out), and the font appears different, or bold, then you’ve most likely changed the message body view inadvertently. To switch it back, simply:
    Browse to View -> Message Body As -> and select Original HTML.)
    DID NOT WORK #2 :
    Email message looks fine, but doesn’t contain images
    If the rest of your Thunderbird email message looks okay, but is missing images, or they appear to have been stripped out, it’s very possible that you’ve changed a setting that won’t let attachments (ie. pictures) appear inline (within the message body). To change this back, simply:
    Browse to View -> and select Display Attachments Inline. )
    DID NOT WORK #3 :
    If you made the above changes to your Thunderbird settings and images still aren’t appearing in some of your messages, it may be that Thunderbird is blocking them because it thinks they are spam. To adjust your privacy settings and prevent the images from being stripped out, or not displaying at all (ie. being blocked), simply:
    Click on the button to the above right of the email message asking you whether you would like to load images.
    If the email message is from a trusted sender, you can click the link above the message specifying you would always like to load images in messages from this particular sender.
    DID NOT WORK #4 :
    If you’re still having troubles, or your changes aren’t being saved (ie. next time you open Thunderbird the images won’t display again) you can directly specify the default format Thunderbird should display email messages as in the config editor. To access it, simply:
    Browse to Tools -> Options -> Advanced tab -> Config Editor
    Search for mail.default_html_action and make sure it is set to 3 (allow original HTML). If you would like messages to open as text only (more secure, but you won’t see images, change the setting to 1).
    Could you please suggest what possibly has caused this issue? Thank you for your time.

    Thank you for your response.
    After searching around for any pointers to my problem, the above fixes I listed were the things that came closest to maybe addressing the issue, that I was able to locate. But since none worked, and as you pointed out, it is now clear they will only help towards viewing sent images rather than helping with inserting any images in the body of the email, which is the problem I suddenly started facing today.
    Coming to your suggestion, on opening the Write window, the Insert choice on the menu bar is indeed available. And I had already tried using that, by clicking on the '''Insert ----> Image''' option listed. That opens
    up the "Image Properties" box but using that has not resolved the matter either. It results in an image box getting inserted within the email but without the actual image itself.
    Plus, normally I am able to use the '''Paste''' function in the Edit menu or through right-click, but today the (Cut/Copy/Paste) functions have gone inactive, thereby disallowing me to use that to place an image within the email.

  • How can I attach a document to an email as an attachment that doesn't appear in the body of the text

    When I send an email and attach a document it pastes it into the text.  How do I send it as a separate attachment?

    Control+Click or Right Click on the attachment within the body of the email and select 'view as icon'. Also make sure 'Send Windows-friendly attachments' is selected in Mail>Edit>Attachments menu.
    There is a (paid for) plug in available called Attachment Tamer that will make this the default behaviour and generally help Mail to make attachments more compatible across computer platforms.
    http://lokiware.info/Attachment-Tamer (disclaimer: no connection with the company just happy with their product - it works well).

  • How to hide ToC in the body of an ebook?

    Hey folks, I have kind of a weird query. Keep in mind that everything I know about InDesign I've taught myself over the past month, so I may be missing somethng major.
    As part of an internship I'm creating ebooks, and have to make sure the ones I create look the same as ebooks previously created for my employer (better yet, I've had to do so from scratch!). In their previous ebooks (EPUB file format) the table of contents displayed by the ereader makes it clear a specific TOC style was used to create it (it has headings and subheadings, so it's not just the default style that pulls from file names) BUT there is NO table of contents anywhere within the body of the ebook itself. There's also no blank page where a TOC might be hidden with a hidden layer. 
    I've created a TOC style to match theirs, but I can't get it to show up in the TOC Styles dropdown menu when I go to export the Book file to EPUB unless the TOC document is also included in the Book file, and as I said, I can't have the TOC in the body of the ebook itself, just in the menu displayed by an ereader.
    Any advice?

    No, I haven't tried either of those fixes yet, but I will. Not sure how to save as IDML but I'll find a tutorial for it somewhere.
    Is it relevant to those troubleshooting techniques that I'm running a trial version of InDesign?
    @Ellis home, yes, I have tried exporting the ebook and the TOC only shows up as the Default style (so the file names show up as the TOC), which is the only style available in the TOC Styles dropdown menu right now.

  • Making sure attached images and signatures appear in the body of sent email

    The subject line says it all. I would like recipients of my mail to see the attachment/image or signature, within the body of the email where I have placed it.....or not if I so choose. Is this possible to control from the sender's end?....or is this also influenced by the receiver's mail settings and platform?
    I know there are many posts that dance around this issue, but I have not found one that nails it. Any advice would be appreciated. Thanks.
    PowerBook 17" & G4 Quicksilver desktop   Mac OS X (10.3.9)   Mail 1.3.11

    The Mail.app displays all image/photo and single page PDF documents inline or viewed in place within the body of the message by default. Depending on the recipient's email client and available preference settings, such attachments may appear inline or viewed in place within the body of the message by default when the message is opened (as with the Mail.app) or as attached files only for which the sender has no control over.
    If the recipient's email client is not the Mail.app but displays image/photo attachments inline or viewed in place, the attachments may not appear exactly where you placed them.
    The only way to do what you want or get as close as possible is by using HTML formatting with embedded images and/or objects and no Mail.app version includes an HTML composer/editor.
    RTF with Tiger Mail is HTML which allows for forwarding a message received that was composed in HTML keeping all intact. With Tiger, you can use the HTML editor/composer of choice with embedded images/objects, etc. and save the completed document.
    Open the saved HTML document with Safari and at the Safari menu bar, go to File and select Mail Contents of This Page. A new Mail.app message will be launched and the HTML document viewed with Safari will be copied to the message which will be sent in its entirety.
    You cannot do this with Jaguar or Panther Mail.

  • Disappearing copy of email in the body of all main in sent box

    Almost every day, I refer to previous email I have sent that is located in the "sent" mail folder. At least once each day or two, when I click on a letter within the "sent" folder, the body of the email contains the following message"
    "The message from X (x=person's email name) concerning "email addressee" has not been downloaded from the server. You need to take this account online in order to download it."
    When you send a letter, a copy of the email is kept in the "sent" folder. If you click on a letter, you can read the message you sent (in the body of the message). When this problem occurs, there is no copy of the email sent, just the message stated above.
    The problem, is that the account is not offline, as I have checked each time I get the message. The only way to fix this has been for me to quit the mail program, and then re-open it from the dock. Then when I click on the message within the "sent" folder, the copy of what I sent is within the body of the email.
    Does anyone have a suggestion as to what is going on? Would upgrading to OS 10.4 fix this issue? Thanks in advance.

    Hello,
    Please read the topic found at the link below, and post any observations and questions about how your situation may compare:
    http://discussions.apple.com/message.jspa?messageID=1541387#1541387

  • IPhone: Sending a picture as an attachment, not embedded within the email?

    Hello Community,
    Does anyone have a suggestion as to how to e-mail a picture from your iPhone, as an attachment? NOT embedded within the e-mail....?
    My wife's e-mail client (school teacher) will not allow her to receive/view emails that have pictures embedded within the body text. She can only receive pictures if they are attached separately on the e-mail.
    The only work-around I have found, is by installing the Google Mail app onto my iPhone. Google Mail will allow you to send pictures as attachments. But I do not prefer this. I would like to use the iPhone's native e-mail application.
    Thanks,
    BP

    To follow up on this question, is there any way to receive *.tiff or *.jpg on an iPhone/iOS device in general as an attachment rather than imbedded in the email, and "open with" some other application, or save to an application store, like GoodReader does with say, *.pdf's?

Maybe you are looking for

  • Link button in data grid

    hi Can anyone tell me why the click action is not working when the link button is placed in datagrid. <mx:DataGridColumn dataField="edit" headerText=""> <mx:itemRenderer> <mx:Component> <mx:LinkButton label="edit" click = "click1();"> </mx:LinkButton

  • Problems when starting EM in win7

    hi ppl......im trying to strat Em in win7, Microsoft Windows [Version 6.1.7600] Copyright (c) 2009 Microsoft Corporation. All rights reserved. C:\Users\shri>set oracle_sid=orcl C:\Users\shri>emctl status dbconsole Oracle Enterprise Manager 11g Databa

  • Flash Variable Help

    I am trying to have JavaScript open a new browser window with certain height and width and navigate to designated path . . . however I am now trying to get it to look back in the root at certain variables to get this information and the code has now

  • PLANNED PRICE

    Hi, What do I need to do to compare planned data with actual in COPA Account based Profitability Analysis? Would the following fields be characteristics or keyfigures in an Account Based PA: 1. LPLPR: Planned Price 2. LPLP1: Planned Price 1 3. LPLP2:

  • How can I find out if the logged in windows user is adminstrator?

    Hi All I have an app where I wish to disable certain functionailty if the logged in user is NOT an administrator. Is there a straightforward way to determine this. I cant find an Application property that returns this value,  i know it may be accessi