How can I make a link disable?
Disable of a link
Collapse
X
-
Tags: None
-
Sorry for tht.actually I am very much fresher in this field.Originally posted by r035198xYou are really not good at explaining your problems clearly are you?
Actually I am facing th problem as below.
I have a jsp page,having a hyperlink.Now as we proceed through the hyperlink ander after required action getting back to the parent page,I want that the particular hyperlink in my parent page should be disabled.Comment
-
By disabled do you mean hidden or you want the text to be there but have it no longer as a link?Originally posted by sanjuktaduttaSorry for tht.actually I am very much fresher in this field.
Actually I am facing th problem as below.
I have a jsp page,having a hyperlink.Now as we proceed through the hyperlink ander after required action getting back to the parent page,I want that the particular hyperlink in my parent page should be disabled.
One approach may involve giving the the link tag an id.
P.S I'm moving this to the Javascript forum.Comment
-
Yes you are right I want the hyperlink should be hidden.Originally posted by r035198xBy disabled do you mean hidden or you want the text to be there but have it no longer as a link?
One approach may involve giving the the link tag an id.
P.S I'm moving this to the Javascript forum.
Thanks in advance.Comment
-
I have a hyper link in a jsp page.after click the hyper link i will porform some operation.After performing the tasks i will submit the parent page by checking that the task have been performed or not without reloading/refreshing the parent page.Originally posted by sanjuktaduttaYes you are right I want the hyperlink should be hidden.
Thanks in advance.Comment
-
Set the style.visibilit y property to "hidden", e.g.[CODE=javascript]document.getEle mentById("linki d").style.visib ility = 'hidden';[/CODE]Originally posted by sanjuktaduttaI have a hyper link in a jsp page.after click the hyper link i will porform some operation.After performing the tasks i will submit the parent page by checking that the task have been performed or not without reloading/refreshing the parent page.Comment
-
Originally posted by acoderSet the style.visibilit y property to "hidden", e.g.[CODE=javascript]document.getEle mentById("linki d").style.visib ility = 'hidden';[/CODE]
Thank you very much.Comment
-
Originally posted by acoderYou're most welcome. Is your problem solved?
Yes, my problem is solved.Sorry for the late reply.Comment
-
As r035198x pointed out, no worries. Better late than never, I say.Originally posted by sanjuktaduttaYes, my problem is solved.Sorry for the late reply.
Glad it helped. Post again to the forum should you have any questions that need answering.Comment
-
And what is solution if we need to keep the text i.e; no more be visible as hyperlink but just as a simple textComment
Comment