Create a hyperlink that does not open a new window if a window containing the url is already open?

Is there a way to create a hyperlink to a url that "jumps to" the URL's window if it is already open in the browser?  Therefore a new window is not opened and the existing window containing the hyperlink would not change either.
If the target url is not already open, then yes the link could either open in a new window or in its existing window.
Does anyone know if there is a command/code for this? 

Ok, so to be clear, I should add all of the following:
Header 1
function getCookie(c_name) {
if (document.cookie.length>0)   {
c_start=document.cookie.indexOf(c_name + "=");
if (c_start!=-1)     {
    c_start=c_start + c_name.length+1;
    c_end=document.cookie.indexOf(";",c_start);
    if (c_end==-1) c_end=document.cookie.length;
    return unescape(document.cookie.substring(c_start,c_end));
return "";
function wOpen () {
var cookiename = getCookie ('winFlag');
newWin = window.open("YOURPAGE.html","myWin'","height=200, width=200");
newWin.blur();
    document.cookie = "winFlag=1";
into 1 file?  And that is the file that links to the music page?
I don't know if my Flash music page creates a cookie onto the user's browser.  That would be necessary for this to work, right?

Similar Messages

  • Creating a page that does not exist

    Hi everyone,
    Is it possible to create a page that does not exist based on the user input?
    By does not exist I mean that it is not stored in your computer and JSP will generate the page based on the user input. For example, in forums the user can create a new topic and based on the options selected a page will be created and stored that was not present before. The same thing happens when a message has a large number of replies, in which a new page will be created and attached to the previous page. I hope that I am not misunderstanding the concept of creating pages in forums.
    Any help is greatly appreciated.
    Regards,
    Basil Mahdi

    Hi,
    what happens in the forums is that you type in a message and that message is stored in a database. Along with your message the number of thread, forum number and message number is stored. Next time somebody wants to read your message, this message is taken from the db and shown to you by the jsp. The JSP ofcourse does more thant taht it shows also other messages and static HTML.
    http://galileo.spaceports.com/~ibidris/

  • When are you going to create a captcha that does not reguire bc

    When are you going to create a captcha that does not reguire bc

    CAPTCHA for non-BC forms and other forms improvements will be high on the list for consideration for the release following 8.0 .
    You can post in "Ideas for Features" - need to have CAPTCHA abilities for non-BC sites .
    Here is the link:
    http://forums.adobe.com/message/6114695#6114695
    Thanks,
    Surjeet

  • Receiving emails about a newly set up itunes account that does not belong to me (although has my name). The address used in connection with it seems to be in California and the person likes Justin Bieber - what's going on here?

    Hi. I am receiving emails about a newly set up itunes account that does not belong to me (although has my name). The address used in connection with it seems to be in California and the person likes Justin Bieber (as I now have a receipt for that purchase). It states that it is billed to store credit. (a) I don't want to receive this person's information and (b) I certainly don't want to somehow be charged for it (although it appears, thus far, that I have not been). What's going on?

    i didn't read a lot of your 2nd paragraph, but it seems like the password is the issue, right?
    do a true clean install
    reboot your machine and hold down command+option+r, you should see a spinning globe - if you don't see the globe or anything that reads internet recovery, shut down and try again
    at menu, chose disk utility and once there, find your HD on the left side, select the physical name and erase it as mac journaled
    exit disk utlity
    at menu, choose install OSX
    this time, when it asks for a password just hit continue, it will let you complete without a password
    you should be able to get into your laptop, now figure out what password you'll be able to use with your kb issue

  • How can I create a template that does not have automatic formatting but my own?

    I have just switch to a Mac from a PC and am having a terrible time with pages.  All I want to do is create my own template that has NO AUTOMATIC FORMATTING so I can do my own.
    There is nothing in the HELP sections on how to delete the automatic formatting.  I do not want to use any of their Outline Templates just make up my own.
    I would be so so grateful if someone could help me with this.  I took a one-on-one and his idea of how to get rid of formatting in my own template DID NOT WORK!
    Thanks, Deborah

    Deborah
    Hard to see your problem, and if there is something THAT DOES NOT WORK! it would obviously be useful to know WHAT that is and WHY you believe it does not work, so we can ACTUALLY RECOMMEND A SOLUTION.
    Just select any text and change it to whatever you want using the toolbar and/or the Text inspector.
    The Outlines are just a view of your text, in a form that lets you easily organise and move it around.
    Menu > View > Show Styles Drawer
    Reveals whatever style has been applied to a heading or text and you can update or create new styles by clicking on the small triangle next to it > Redefine style from selection
    When you are finished just save it as a Template.
    Peter

  • Create timer function that does not use start-sleep

    Hey all I would like to create a timer function that does not use the start-sleep command because this freezes my GUI. I've wrote the start of a function but it seems to move on before the specified time has finished.
    Here's what I have:
    $Global:timerCounter=0
    $Global:timer = new-object System.Windows.Threading.DispatcherTimer
    Function Timer{
    param(
    [parameter(Mandatory=$true)]
    [int]$time
    $timer.Interval = [TimeSpan]"0:0:$($time)"
    $timer.Add_Tick({
    $Global:timerCounter++
    if($Global:timerCounter -ge 1) {
    $Global:timer.Stop()
    $timer.Start()
    Then in my script i would like to call Timer -time #of seconds. It seems that when I call it the add_tick is registered and then started but it continues on with the rest of my script. Is there a better way of doing this without using start-sleep?
    Thanks!

    Okay the issue I'm having is that I have code after the $timer.start that I don't wan't to run till a powershell job is done. In all the examples I've seen it has to come to the end of the code then it starts the tick. So in your example it comes to the
    end of of your code and showsDialog() then starts ticking.
    So:
    add-type -AssemblyName system.windows.forms
    $form=New-Object System.Windows.Forms.Form
    $btn=New-Object System.Windows.Forms.Button
    $form.Controls.Add($btn)
    $btn.add_Click({$form.Close()})
    $btn.Dock='Fill'
    $btn.Font='Lucida Console, 20.25pt, style=Bold'
    $btn.Text=[DateTime]::Now
    $timer=New-Object System.Windows.Forms.Timer
    $timer.Interval=1000
    $timer.add_Tick({$btn.Text=[DateTime]::Now})
    $timer.Start()
    $form.ShowDialog()
    #I want to do other things here but only after the ps job has finished
    Thanks I really am trying to figure this out. 
    Here is the code I'm working with I guess I'm unclear on how to order the timer and the rest of my code:
    if($syncHash.mainCopy){
    $syncHash.mainJobDone = $false
    $syncHash.writeHost = $false
    while(-not $syncHash.mainJobDone){
    [System.Windows.Forms.Application]::DoEvents()
    if($syncHash.writeHost -eq $false){
    Write-OutputBox -Message "Copying"
    $syncHash.writeHost = $true
    $syncHash.inProgress = $syncHash.mainCopy | Where-Object {$_.State -match 'running'}
    $syncHash.currentCopyTime++
    }elseif($syncHash.currentCopyTime -ge ($syncHash.averageCopyTime * 2) -and $syncHash.collectionCopyTime.Count -ne 0){
    $syncHash.Unusable += $syncHash.currentMainCopyMachine
    $syncHash.computersNotForInstall += $syncHash.currentMainCopyMachine
    $syncHash.inProgress = $null
    $syncHash.mainCopyTimedOut = $True
    Write-OutputBox -Type WARNING: -Message "$($syncHash.currentMainCopyMachine) is taking too long. Removing Job.."
    Add-Content -Path $log_path -Value "$($syncHash.currentMainCopyMachine) taking to long to copy to"
    Stop-Job $syncHash.mainCopy
    }else{
    $syncHash.inProgress = $syncHash.mainCopy | Where-Object {$_.State -match 'running'}
    Write-OutputBox -Message "." -NoNewLine
    ############################# ############# So I need it to wait right here I have other code other than in this block ############# that needs to run $syncHash.currentCopyTime++
    if(-not $syncHash.inProgress){
    $syncHash.mainJobDone = $true

  • Creating a Report that Does Not Require a Target

    I have several reports I'm building that work across all systems of a particular type. For example, I want to create a table of all of the systems with all of their software versions, another table with all of the systems and all of their free capacities and raid profile types (to best select a system to allocate capacity on) ...
    As such, I would like to build a report where I do NOT have to choose a specific target. Is this possible?
    My report definitions allow me to choose a type, but I can't find a way to say "but don't require a target", here is the report metadata for reference...
    l_target_type := MGMT_IP_TARGET_TYPES();
    l_target_type.extend(1);
    l_target_type(1) := 'my_storage_type';
    l_report_title_nlsid := 'Federated Capacity and Configuration Report';
    l_report_owner := mgmt_user.get_repository_owner;
    -- create a report definition for the report
    l_report_guid := mgmt_ip.create_report_definition (
    p_title_nlsid => l_report_title_nlsid,
    p_description_nlsid => 'Display of Configuration Information',
    p_owner => l_report_owner,
    p_category_nlsid => 'Storage',
    p_sub_category_nlsid => 'Storage Category',
    p_late_binding_target_types => l_target_type,
    p_show_table_of_contents => 1,
    p_system_report => 1,
    p_component_name => l_target_type(1)
    );

    It is a bit more complex, but I will boil this down:
    - Yes, I'm using the term System loosely, I am doing a query across a bunch of appliances in one case, there is no target identifier associated with it and, as such, the SQL does NOT include a where clause like i.TARGET_GUID = ??EMIP_BIND_TARGET_GUID?? so I would prefer the user does not have to select this
    - In another case I am in a detail report and do not want the user to have to choose the target (you can refer to another post on this), but basically, I get a table back using the BIND_TARGET, the user can click a column to get details on the adapter (for example), they click on it and are confronted with a target selection. I would rather "carry over" the target selection from the master report or I suppose I could "hide" the target GUID in the master report and then pass it as a parameter (my detail reports, in this case, are not home page reports and can only be accessed through the master report)
    Either way, I don't want to be confronted by the target selection.

  • Many times when I click on a link that does not use a new tab, a new page opens under my current page, instead of 'on top'. How do I get new pgs to Open On Top

    No further information.

    Waka, I have Kaspersky running 24/7 but Cor-el (from Superman, I think) gave me a list of software to try.
    Cor-el, the middle click seemed to work on a page that went under, which I deleted and tried again with the wheel click.
    Waka and Cor-el, I have been planning to reinstall my Windows 7 OS and upgrade it to Pro, from Home at the same time. Will possibly re-partition C: and -will- reformat it. Will have to re-install ALL my software plus some of my softwares' user information, which I have also backed up, along with favorites and many others.

  • HT204088 I had two Apple IDs so I picked the current one I want to use.  Then I try to into iTunes or buy an app and it does not recognize my "new" ID.  How do get the old ID deleted and get the most current recognized?

    I had an Apple ID with an old email address and I tried to change it to a new ID.  When I try to go into anything requiring an Apple ID, I can't get in because my new ID is not recognized.  How do I get my new Apple ID recognized?

    To change the iCloud ID on your device you have to go to Settings>iCloud, tap Delete Account, provide the password to turn off Find My iPhone when prompted, then sign back in with the ID you wish to use.

  • How to create a calendar that is *not* in iCloud?

    Hi,
    In the Calendar application, it seems I can only create iCloud calendars. Is there a way to create a calendar that does not get copied to the internet?
    Rob

    That's not there. So the question is, can I enable that somehow?  About Calendar reports that this is version "7.0 (1841)".

  • Playlist that does not contain artist of another playlist

    Hello,
    How could you create a playlist that does not contain artist/album present in another playlist?
    I do not even know if it is possible : in that case, do you have any alternatives?
    Thank you very much for your answers.
    Regards,

    Match all rules...
    Playlist is Music
    Playlist is not Playlist 1.
    Playlist is Playlist 2
    or just...
    Match all rules;
    Playlist is Music
    Playlist is not Playlist1 (iPhone playlist)
    I want that playlist to not contain artist/album from playlist (2).
    Do you really want to match Artist/Album or do you simply want to show everything that is not in Playlist 2?

  • HT1222 I just installed this update and now I cannot access "Mail" at all.  I tried reinstalling the program, but that does not work, either.  Help!!!!!!

    I just installed this update and now I cannot access "Mail" at all.  I tried reinstalling the program, but that does not work, either.  Help!

    Paldeng, thanks for the suggestion.  I've done all that.  I can connect to the server, but apparently they are not recognizing my ID and password.  I can use the server program if I don't go through Mail (using the same ID and password).  My mother in another state with another provider has had the same email issue, as also my husband on his laptop who uses the same internet connection I do.  His worked fine until we had it repaired at the Apple store and all the original programs reloaded (with the required updates, I assume).  We can receive email in Mail, we just cannot send.
    I contacted my service provider, and we went over my connections.  They said it was not their problem and connected me with Apple, resulting in a charge to me because my warranty is long expired.  Apple swears it is not their problem, it is the provider, so here I sit.  My son was able to fix my Mom's Mail (she's 97) and got my husband's working also, until mine went out, by tweaking connection descriptions and ports remotely.  The thing is, we had not messed with any of those settings, so what changed?  I just did not want to bother my son again, as he has many other demands on his time.
    Since this fiasco with the Mail v4.6 update, I'm wondering if something else was updated that works well with Lion and Mountain Lion, but does not work well with Snow Leopard and Leopard.  I think the problem I had with the Mail update was that my Mail program had been renamed to Mail (original), and therefore was not being recognized by the update.  Perhaps they had another tweak in there somewhere that is affecting outgoing mail connections?

  • How to map a url that does not match with the context root  ?

    does weblogic support url that does not match the context root ?
    ex. the context root is AAA. the welcome page can be
    retrieved using http://localhost:7001/AAA
    Can it be configured to use http://localhost:7001/BBB to bring up the index.html in context root AAA ? if so, how ?

    I agree with Imp68.
    It still amazes me that in 2014 so many web sites are still not standards-compliant and instead insist on sniffing for the user-agent.  And, in the majority of cases, I've found that the websites work fine with any modern browser.
    phardell,
    To be clear, Safari is not the problem, the website is!  The developer of this website is still living in the 1990s and needs to move forward with the times.  Imp68's suggestion will cause Safari to "pretend" to be whatever browser you wish.  Try choosing "Safari 7" if that worked for you in the past and the website will likely go back to working.  If that does not work then try choosing "Internet Explorer 10" from the menu and see if that works.
    No matter what the result, you should look at the bottom of the page for a link to report problems with the website.  Submit a comment that tells them that they need to "modernize your website to support all modern web browsers".
    Good luck.

  • Cannot set up an alias on iCloud? have followed the instructions. It will not allow my new alias name which fits inbetween the specified no of characters?

    I am having problems creating a new alias in my iCloud.
    I have followed the instructions to the letter.
    It does not accept my new alias name which fits in the prerequisite number of characters?

    Post in the iCloud forum area.

  • How can i setup pages to automatically open when double clicked.  Currently when I double click it creates cpgz file and does not open.  The only way to open pages doc is to manually ask to open with pages.

    Currently when I double click it creates cpgz file and does not open.  The only way to open pages doc is to manually ask to open with pages.

    Hi Karen,
    Sounds like OS X has lost the association between Pages and its files.
    Start by quitting Pages, then going to Finder.
    In Finder, locate a .pages file. Click on it (once), then press command-I (eye, not one) to Get Info.
    In the Info window that opens, expand the Open With section.
    In this section, click on the pop-up menu and choose Pages (even if Pages is already shown).
    Click the Change All button to associate all files with the .pages extension with Pages.
    Close the info window.
    Double click any .pages file to check that Pages will now launch and open the file.
    Regards,
    Barry

Maybe you are looking for