How to check the properties or the source file or the HTML coding of any particular link on the web page?

Earlier when I wanted to see the HTML coding of any link on the web page, I was able to see it but now I am not able to do that. Like earlier I used to right click on the link and there was an option of "View Properties" through which I was able to view it but now no such option is coming. Can you please help me out with this as I am facing many Problems?
== This happened ==
Every time Firefox opened
== from around 1 month

Install the extension at https://addons.mozilla.org/en-US/firefox/addon/14228 for that.

Similar Messages

  • How to change the web page title of a web dynpro app?

    Hello,
    I would like to change the HTML page title of a web dynpro application without renaming the application component itself - but how?
    Thanks for your comments!

    Hi M Walter,
    Assuming you are using Web Dynpro Java, you can change the title of the Web Page for Web Dynpro App by adding the title to the main window of your app.
    Go to Windows and open the properties. There will be a field called 'title'. Give the title you want, save, build, DC->Build and deploy.
    The title you gave to this Window will be displayed as the title of your Web page.
    Regards,
    Ajay

  • How to save the web page content? help!

    i'm doing 'saveAs' button in order to save all the web content. I'm using ole automation. Can help me to check how to modify my code in order to run 'saveAs' function'? I'm stucked at the code shown below as i would like to insert the web content instead of "tre" tat i assigned. how to do that? thanks
    // Enter text
    dispIDs = objSelection.getIDsOfNames(new String[] {"TypeText"});
    System.out.print(dispIDs.toString());
    objSelection.invoke(dispIDs[0], new Variant[] {new Variant("tre")});
    the save method is as shown below:
    public void save(){
              String fileName = "c:\\test\\tmpdoc01.doc";
              OleClientSite site = new OleClientSite(webFrame, SWT.NONE, "Word.Application");
              OleAutomation objApplication = new OleAutomation(site);
    // Get Documents object
    int[] dispIDs = objApplication.getIDsOfNames(new String[] {"Documents"});
    Variant varResult = objApplication.getProperty(dispIDs[0]);
    if (varResult != null && varResult.getType() != OLE.VT_EMPTY) {
    OleAutomation objDocuments = varResult.getAutomation();
    varResult.dispose();
    // Add Document file
    dispIDs = objDocuments.getIDsOfNames(new String[] {"Add"});
    varResult = objDocuments.invoke(dispIDs[0]);
    if (varResult != null && varResult.getType()!= OLE.VT_EMPTY) {
    OleAutomation objDocument = varResult.getAutomation();
    varResult.dispose();
    // Get Selection object
    dispIDs = objApplication.getIDsOfNames(new String[] {"Selection"});
    varResult = objApplication.getProperty(dispIDs[0]);
    if (varResult != null && varResult.getType() != OLE.VT_EMPTY) {
    OleAutomation objSelection = varResult.getAutomation();
    varResult.dispose();
    // Enter text
    dispIDs = objSelection.getIDsOfNames(new String[] {"TypeText"});
    System.out.print(dispIDs.toString());
    objSelection.invoke(dispIDs[0], new Variant[] {new Variant("tre")});
    objSelection.dispose();
    // Save Document file
    dispIDs = objDocument.getIDsOfNames(new String[] {"SaveAs"});
    objDocument.invoke(dispIDs[0], new Variant[] {new Variant(fileName)});
    // Close Document file
    dispIDs = objDocument.getIDsOfNames(new String[] {"Close"});
    objDocument.invoke(dispIDs[0]);
    objDocument.dispose();
    objDocuments.dispose();
    // Quit Application
    dispIDs = objApplication.getIDsOfNames(new String[] {"Quit"});
    objApplication.invoke(dispIDs[0]);
    objApplication.dispose();
         }

    import java.io.*;
    import java.net.*;
    class SiteSaver {
         public static void main(String[] argv) throws Exception {
              if( argv.length != 2 ) usage();
              BufferedWriter bw = new BufferedWriter(new FileWriter(argv[0]));
              URL url = new URL(argv[1]);
              BufferedReader br = new BufferedReader(new InputStreamReader(url.openStream()));
              String input;
              while( (input = br.readLine()) != null ) {
                   bw.write(input);
              br.close();
              bw.close();
              System.out.println("Contents of \"" + argv[1] + "\" have been saved to the file \"" + argv[0] + "\"");
         private static void usage() {
              System.out.println("usage: java SiteSaver [filename] [url]");
              System.exit(1);
    }

  • How to resize the web page, accidently minimised the webpage, unable to resize it.

    while surfing using my laptop, i have re sized the appearance(font size) of my gmail and facebook pages. Other web pages are ok. I'm now unable to re size it back and unable to use the site as the font size is too small and not readable.
    Appreciate any suggestion.

    Try to reset the zoom level.
    View menu > Zoom > Reset
    If you have the orange Firefox button, tap the Alt key to display the classic menu bar to get to the View menu.
    Any luck?

  • How to codify the web page

    I have some troubles when i publish the webpage because i see a lot of symbols that didn't appear when i maked de webpage, so i have codiffy the webpage with the ISO 8859-1, and i can't find the way to do that, is it possible?
    Thanks

    It would help a lot of you would provide the url.
    To change the encoding of the page would be tedious and would also get erased every time you republished.
    You may need to change the setting of your ftp program or add an .htaccess file to your space on your server. See this note:
    http://homepage.mac.com/thgewecke/iwebchars.html

  • How to Preset the Web Page resolution

    Hello to all. I tried searching but came with nothing. I
    wanted to know if there is a way in preseting the page to a
    resolution, say 1024x768
    Or is it better having the width set at 100% and go from
    there?
    thank you for the help

    Hi,
    >>
    I wanted to know if there is a way in preseting the page to a
    resolution, say 1024x768
    >>
    you could put all the page contents in a table that´s
    tagged with a fixed width of 1024
    >>
    Or is it better having the width set at 100% and go from
    there?
    >>
    I´d certainly recommend this "fluid" approach, because
    you can´t foresee if the visitor has a smaller screen
    resolution, or if part of the browser´s "inner screen" has
    been reduced by means of a sidebar.

  • How to call the url page inside the procedure.

    Hi,
    I am not exposure in plsql.
    I am getting some problem in utl_http link.
    I create a one procedure. The procedure was successfully compiled. But the url page doesnt open..
    I attached the procedure,
    create or replace procedure p(mob number)
    IS
    l_page long;
    l_url varchar2(25000 char) ;
    begin
    null;
    l_page := utl_http.request( 'http://www.yahoo.com');
    end;
    please tell me the solution for this problem..
    I am waiting for ur response.
    Thanks,
    Sasi.

    this is a duplicate thread:
    how to open the web page in pl/sql
    the OP doesn't seem to understand the difference between a web browser and a programming language....... I can't say I've ever had to explain the difference before...
    let's just say.... butterflies are not in any way similar to electric shavers..

  • Open the web page

    Hi
    I am not exept in plsql..
    How to open the web page in oracle pl/sql with procedure.
    regards,
    sasi

    Hi,
    There is a dedicated forum for PL/SQL questions, please post your question in that forum for a better/faster response.
    SQL and PL/SQL
    PL/SQL
    Thanks,
    Hussein

  • How to check the tables we have created in JDBC??

    I have created a table called COFFEE2 in a datasource called temp which is in SQL server...How to check the table values??
    i went into administrative tools and odbc cource then i could see the data source i have created but how to see the table??
    Can anyone help??
    thanx

    Hmm.. not sure that I understand the problem.
    Call getConnection on the DataSource, and then execute the select query on the connection.
    Kaj

  • CIN: How to check the material document posted without excise invoice

    Hi Guru,
    Please advise how to check the material document posted without excise invoice.
    I have tried tcode J1I7 but it seems start to collect the excise invoice first and then material document.
    But my case is to find the material document WITHOUT excise invoice for internal tracking purpose.
    At the moment we start from tcode MB51 to get the list of material document and check in J_1IEXCHDR / J_1IEXCDTL
    Best regards,
    Pakorn

    Hi,
    Try creating a Query in Tcode SQVI by combining tables MKPF and J_1IEXCHDR/J_1IEXCDTL for your requirement.
    Check these threads how to create Query.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/6018c1ae-8c44-2d10-6ea9-c3fad2c82880?QuickLink=index&…
    http://ptgmedia.pearsoncmg.com/images/9780672329029/samplechapter/0672329026_CH03.pdf
    Regards
    Binoy

  • How to check the messages in solution manager?

    hai experts !
    how to check the messages in solution manager?
    in which transaction do we see them?

    Hi Kiran,
    From what I gather from your brief question, you are perhaps looking for CRM_DNO_MONITOR that would display all queries created from Satellite/SolMan system itself, as support messages.
    If you are looking for Notifications underlying those messages, please look for DNOTIFWL.
    For more specific answers, please provide more description of what you are looking for.
    Trust this helps.
    Regards,
    Srini

  • How to check the verity version in our PeopleSoft Installation?

    How to check the verity version in our PeopleSoft Installation? I am not sure if the verity is installed or not and also if installed what is the version?

    yes. it says the version is 5.0.1
    Is there any difference in installation or configuration when the app and web server are in same machine and when the app and web server are installed in different servers?
    ============================================
    D:\fs840\webserv\peoplesoft>mkvdk
    mkvdk - Verity, Inc. Version 5.0.1 (_nti40, Jul 23 2004)
    Usage: mkvdk [<option>...] <filespec>...
    Where <option> can be a VDK switch, or any of:
    -about Show the collection's about resources
    -autodel Delete bulk insert file when no longer needed
    -backup <dir> Specify collection backup location
    -bulk Submit bulk insert file(s)
    -charmap <name> Specify the character map to VDK
    -collection <path> Specify the collection (required)
    -create Create the collection
    -credentials <user> Specify user[:passwd][:domain][:mailbox]
    -datapath <path> Specify VDK datapath
    -datefmt <fmt> Specify date format to VDK
    -debug Enable debugging output
    -delete Delete documents
    -description <desc> Set the collection's description
    -diskcache <num> Set VDK's disk cache size (kbytes)
    -extract Extract field values from text
    -help Print this usage information
    -insert Insert documents (default)
    -locale <locale> Specify the locale to VDK
    -logfile <file> Save output in a log file
    -loglevel <num> Set the VDK output level for the log
    -mailboxes This option is depracated. Use the credentials option inste
    ad
    -maxfiles <num> Set VDK's maximum number of open files
    -maxmemory <num> Set VDK's maximum memory usage (kbytes)
    -mode <mode> Set the indexing mode
    -modify Modify fields using field/value pairs from a bulkfile
    -nohousekeep Disable housekeeping
    -noindex Disable indexing
    -nolock Turns off locking (dangerous)
    -nooptimize Disable optimizations
    -nosave Don't save collection work list
    -noservice Prevents servicing of submitted work
    -nosubmit Don't submit work to VDK
    -numdocs <num> Number of documents to insert from bulk insert file(s)
    -numpages <num> Synonym for diskcache for backward compatibility
    -offset <num> Specify offset into bulk insert file(s)
    -online Flag for online Bulk Modify
    -optimize <spec> Optimize the collection
    -outlevel <num> Set the VDK output level
    -persist Service the collection forever
    -purge Remove all documents from collection
    -purgeback Purge in the background
    -purgewait <secs> Specify delay before purge
    -quiet Suppress all non-error messages
    -repair Repair the collection
    -servlev <spec> Advanced option for overriding service level
    -sleeptime <secs> Interval between service calls for persist
    -style <dir> Specify style directory for create
    -submit Synonym for noservice for backward compatibility
    -synch Perform work synchronously
    -topicset <path> Specify VDK topic set
    -update Update documents
    -vdkhome <path> Specify VDK home
    -verbose Output more information
    -words Build word assist list
    -wordindex Build word assist index
    The <spec> for -optimize is a hyphenated string of:
    maxmerge Perform maximal merging of partitions
    squeeze Recover space from deleted documents
    vdbopt Build optimized VDB's
    spanword Create word list spanning all partitions
    ngramindex Create ngram index into spanning word list
    maxclean Really clean (not for read-write)
    readonly Make the collection read-only
    tuneup Fully optimize for read-write use
    publish Fully optimize for read-only use
    The <spec> for -servlev is a hyphenated string of:
    search Enable search and retrieval
    insert Enable adding and updating documents
    optimize Enable opportunistic collection optimization
    assist Enable building of word list
    housekeep Enable housekeeping of unneeded files
    delete Enable document deletion
    backup Enable backup
    purge Enable background purging
    repair Enable collection repair
    dataprep Same as search-index-optimize-assist-housekeep
    index Same as insert-delete
    Error: must specify collection
    mkvdk done
    D:\fs840\webserv\peoplesoft>

  • Can anyone tell me how to check the balance on an iTunes gift card that is not yet scratched?

    Can anyone tell me how to check the balance on an iTunes gift card that is not yet scratched or activated?

    If it's not printed on the card, then you'll need to check the receipt from the purchase of the card. There's no way to check the value from the card itself without redeeming it.
    Regards.

  • How will check the space taken by a single table in a tablespace ?

    How will check the space taken by a single table in a tablespace ?
    dba_segments is giving the same values even if I truncate the table?
    Pls reply

    I need to know how can we find out the size of the table in the tablespace.use user_segments (bytes) column.
    How much bytes it has taken ?value from user_segments, bytes column
    If u delete records will the space be used for another table in same tablespace?No, it keep the space in the same table for future usage.
    How can we free that space ?truncate or drop the table and reduce the size from tablespace, if you want to reclaim the space from the tablespace, OS level.
    Jaffar

  • How to check the resolution of a pdf file using Acrobat 9 pro?

    How to check the resolution of a pdf file using Acrobat 9 pro?

    PDF files don't have one resolution, but may have none or many different resolutions, one per image. You can check the maximum/minimum resoluion with preflight in Acrobat Pro, but not in Adobe Reader.

Maybe you are looking for

  • "Aperture Cannot Access This Library"

    Hi folks, I have 8 or so libraries on a USB-connected drive and 1 library on my internal iMac drive. When I run Aperture, it opens the latter fine, but when I attempt to switch libraries, I get the Subject error along with a message to check permissi

  • I have an Icon I don't know what it is?

    There is an Icon that that is on the right hand side that looks like a pic of the phone with an envalope in front of it and it says 3 next to it, I know it is not voice mail or e-mail it is smaller then those icons . It is on the other side of the ti

  • How to instal WEB AS for ABAP Edition

    HI,    Can any body guide me how to instal SAP WEB AS ABAP edition. I want instal in my PC. I downloaded the 2 files. How to start installation. Wht is the file name?. In oder to work on WEB AS ABAP Editon is it required have SAP R/3 server? Thanks i

  • Retrieve data from broken harddrive

    Hi, I want to ask. Last friday, my harddrive has broken for unknown reason. I knew it has broken from information I got in PC Hardware Diagnostics UEFI. The harddrive failed on Extensive Test and Long DST test (Error code : Q8FETV-77C7GA-MPFX0J-61DJ0

  • Pentax k-5 dng files bug

    The color rendering of the DNG files from Pentax K-5 after the update is definitely not correct (a lot of purple), the PEF files on the contrary are ok as the DNG files were prior the update.