i want to have a link and have it call a javascript function but i want to pass the text of the link into the function.
i am trying to create a dialog that displays the name on the original link.
would jquery be helpful here?
|
1
|
i want to have a link and have it call a javascript function but i want to pass the text of the link into the function. i am trying to create a dialog that displays the name on the original link. would jquery be helpful here?
|
||
|
|
|
|
Not sure exactly if this is what you are looking for but:
|
||||
|
|
|
jQuery UI has a dialog function which would make it easy. I'd create a hidden div:
And in $(document).ready add:
Then, in the click event of the link, set the title and text as:
Those classes are automatically added by the dialog. edit: forgot to mention, you'll want to open the dialog in the same click event and return false so the original link href doesn't execute. |
||||
|
|
|
A non jQuery way of doing this is to just assign a simple onclick handler to the link
|
||
|
|
|
|
Expanding on the previous answer, if you just want a dialog box it should be (jquery required):
|
||||
|