Link to home
Start Free TrialLog in
Avatar of Melody Scott
Melody ScottFlag for United States of America

asked on

videos have stopped working

http://clinica-americas.com/services-dr-nena.html

On the left, those links used to open a video. I'm not sure what has changed, but they no longer work. I was hoping someone here could tell me why they have stopped working. Seems like maybe there is a file missing, or some inline code, but I can't find it. Thanks.
Avatar of Chris H
Chris H
Flag of United States of America image

They've all been redirected to current page "#"


Your href's need to be the youtube video links, not #
Everyone of those links simply takes you back to the home page.

It looks like the links have simply been changed.

If it were missing files you would get a message about "page not being displayed" or "file missing" or something like that.

Somebody has changed the page itself.
Avatar of Melody Scott

ASKER

weird... as it stands, the link is: <a onclick="myFunction('https://www.youtube.com/watch?v=OBV7i9zRAto')" href="#">Control prenatal y ultrasonido</a>

It is supposed to open a new window containing the video on the click. That's what makes me think something else is missing. Maybe some internal code. Body tag says: <body onload="myFunctions();">.  Maybe that is the issue? Should the link say MyFunction instead of MyFunctions?
ASKER CERTIFIED SOLUTION
Avatar of Fernando Soto
Fernando Soto
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Good question. :) I'll do a search, thanks!
Take a look at the start of your <body> tag
</head>
</head>
<body onload="myFunctions();">

Open in new window

1. You have two closing </head> tags you might want to remove one of those
2. Your onload references myFunctions() - which is also not defined
3. Your links refer to myFunction - which as has been mentioned above - is missing.

I suspect that you have done one of the following

1. Removed a <script> entry from your main page
2. Removed a function from your custom.js file
3. Removed a reference to script file that contains the definition for myFunction
ok, thanks very much. I'll try to recover that.
Found it, thanks for helping!!
Not a problem mel200, glad I was able to help.