The disable-link tag has no wiki summary.
16
votes
9answers
27k views
disable a hyperlink using jQuery
<a href="gohere.aspx" class="my-link">Click me</a>
I did
$('.my-link').attr('disabled', true);
but it didn't work
Is there an easy way to disable the hyperlink using jquery? Remove ...
4
votes
2answers
387 views
Disable links when clicking and dragging to scroll (jQuery)
See fiddle: http://jsfiddle.net/mrcarllister/Z2GjN/
Basically, I've got the click-drag-scroll working EXCEPT when you click and drag on an anchor/link.
It only seems to be when the mouse cursor ...
1
vote
1answer
231 views
Is it possible to disable full screen for youtube api in android?
As header says: is it possible to disable full screen with the Youtube API in Android?
I have an app with fragments and inside those fragments I have frame layout into which I add ...
0
votes
3answers
286 views
Best way to disable a link after clicking on it so that ajax call should not be made
I am using following code to send an ajax request which works accurately, however when user click on the link more than once it create a problem, so i want to disable my link so that no ajax gets ...
0
votes
3answers
294 views
Disable a pop up link for 5 seconds using javascript
For a project I need to print a document using PHP code.
Currently I have a self closing pop up to start the print.
The only problem I have is that a user could spam the button creating a lot of ...
0
votes
2answers
99 views
jQuery disables links
Basically I have this HTML table (which acts as a menu):
<table class="content" align="center">
<tr>
<td class="links">
<table class="links">
...
0
votes
1answer
233 views
.prop disable is not working in Chrome and Firefox
we are using jquery-1.7.1 and are trying to hide a button in asp.net. The button is a linkbutton control. the code we are using is as follows
function checkDisabledButton(btn){
var mbtn = ...
0
votes
3answers
172 views
Disabling/enabling all links on page
I'm working on a sales gallery where the user clicks on a image, and a popout box fades in front of the page. The box includes product details, order information, and a stylized exit button to close ...
0
votes
4answers
247 views
disable facebox links until page loads
I would like to disable my facebox links until the page has completely loaded reason being, when I click on a facebox link before the page loads completely, the page loads a different page instead of ...
0
votes
0answers
24 views
JQuery autocomplete disable some results
i have a jquery autocomplete with ajax in my view with this code:
$('#QuickSearchProduct').autocomplete({
source: function (request, response) {
var term = request.term;
var url ...
0
votes
3answers
57 views
disable click if of <A> if div selected has same id
I have a one page site, and i m sliding divs, the div which is visible has class selected.
E.g if ID ONE has class selected, so link which has href #one shld be disabled.
NOTE: I have multiple LINKS ...
0
votes
2answers
44 views
How to remove the onclick function and enable it using the same function through jquery?
I am having the following code.What I am trying to acheive is when I click 1 it shoould disable the 1 onclick function and remaining needs to be available.And when I click 2, the 1 and 3 needs the ...
-1
votes
0answers
10 views
Remove hyperlink, keep text - blogger
Sometimes I publish newsletters on my blog (I use blogger.com). Since someone unsubscribed me, link on the website does still work, I need a script that automatically removes/disables the word or ...
-2
votes
2answers
501 views
How to enable and disable links in php
I'm trying to make an if statement to enable and disable user account in href link but I want the link display Disable if the Query return active = 1 and enable if the query return 0.
Please help. ...