Jump to content

javascript help


JChilds

Recommended Posts

Firstly, I have absolutely no insight into javascript, at all.

So please bear with my ignorance  ???

 

I have a webpage with a list of locations, and what floor they are on in a building.

 

I need to write some javascript that will (when a button is pressed) , tell me which floor the Secretary office is on, and display it in a prompt. eg:  6

 

 

Here is an example of the text on the page:

....

Secretary Office (Floor 6)

Employee Gym (Floor 2)

....

 

How would I go about doing this?

 

Many thanks in advance!

 

edit: If it matters, here is the source of that particular part of the page:

Secretary Office <b>(Floor 6)</b><br />
Employee Gym <b>(Floor 2)</b><br />

Link to comment
https://forums.phpfreaks.com/topic/109816-javascript-help/
Share on other sites

HTML:

<a href="#" id="secretary_link">Secretary</a>

 

Javascript (put this in script tags in the head of your document)

function secretaryListener()
{
   var targetA = document.getElementById("secretary_link")
   targetA.onclick = function()
   {
      alert("6");
   }
}

window.onload = function()
{
   secretaryListener()
}

Link to comment
https://forums.phpfreaks.com/topic/109816-javascript-help/#findComment-564031
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.