0
votes
2answers
43 views
i need to build my url in a javascript function then return the string back to href
Hi, I need to call a Javascript function from an a element.. something like this:
href='javascript:myjavascriptfunction();'. I need the Javascript function to get the values from …
42
votes
27answers
9k views
Href for Javascript links: “#” or “javascript:void(0)”?
When building a link that has the sole purpose to run javascript, is it better to:
<a href="#" onclick="myJsFunc();">Link</a>
Or
<a href="javascript:void(0)" onc …
0
votes
2answers
95 views
How to remove “href” with Jquery?
<a id="a$id" onclick="check($id,1)" href="javascript:void(0)" class="black">Qualify</a>
After "href" is removed, is "Qualify" still clickable?
0
votes
1answer
32 views
Setting href link target without reloading page
I have a href tag <a href="#somepage" target="sometarget"> or more accurately loading a URL from Flash loadURL('#somepage', 'sometarget'). I have no option to remove the targ …
0
votes
2answers
65 views
Javascript selecting option from a select dropdown, using a href.
Hello,
Im working on a CMS website that creates form elements on the fly according to id and values.
I need to select certain information out of these forms using a link.
For rad …
0
votes
2answers
50 views
HTML/JavaScript Linking
This question may have been asked before, but I had trouble finding an answer, since I didn't quite know what search terms to use.
In HTML, how do you make a link go a place, but …
0
votes
2answers
65 views
RegEx on ‘href’ tags
I'm trying to run a regular expression on some href tags using javascript.
Unfortunatly reverse possitive lookup doesn't work in javascript :-(
I want to prefix all the relative …
2
votes
4answers
187 views
How to use jQuery click event to change href value asyncronously, based on a JSON query
I'm using the bit.ly url shortening service to shorten certain url's being sent to a "share on twitter" function. I'd like to load the bit.ly url only when a user actually presses …
0
votes
2answers
73 views
PNG losses transparency when used as a link.
I have an image over a table that has been style with CSS. When I have my image on the table without a href it is fine, once I apply an href the transparency is no longer working. …
3
votes
1answer
52 views
Wrong extraction of .attr(”href”) in IE7 vs all other browsers?
Can it really be true that the attr("href") command for a link is handled very different in IE7 in comparison to all other browsers?
Let's say I have a page at http://example.com/ …
0
votes
3answers
65 views
Browser opening text/xml in external program
Is there a smart way to - from a browser - open hrefs to text files and XML files in an external program. My target platform is Win32 so preferably I'd have the files open in the d …
0
votes
3answers
65 views
to remove href attr from all the anchor tags using Reg Ex
i am trying to remove href attr from all the anchor tags using Reg Ex,for print page.
Although i need the text value in anchors.
1
vote
2answers
76 views
How to get “raw” href contents in JavaScript
I am trying to write a GreaseMonkey script in which I want to find all of the links that are relative links. It seemed to me that the way to do that would be to match the contents …
0
votes
4answers
96 views
AJAX change page content
I have used AJAX to successfully change the content of a web page. I can include another web page from my domain but the problem I have is making the hyperlinks to work. If the hy …
1
vote
3answers
120 views
how do i count Href using jquery
hi all,
I want to count the Href in a page using Jquery .
Just for refrence: i have random number of hyperlinks in a page for each user and all hrefs are diffrentiated with thie …
