|
|
Here is a simple example of how to remove all links on a page and display Text instead
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Remove Links</title>
<script type="text/javascript"
src="http://ajax.microsoft.com/ajax/jQuery/jquery-1.4.2.min.js">
</script>
<script type="text/javascript">
$(function() {
$('#btnRemove').click(function() {
$('a').contents().unwrap();
});
});
</script>
</head>
<body>
My Sites: <br /><br />
<a href="http://www.dotnetcurry.com">DotNetCurry</a><br />
<a href="http://www.devcurry.com">DevCurry</a><br />
<a href="http://www.sqlservercurry.com">SQLServerCurry</a><br />
<br />
<input id="btnRemove" type="button" value="Remove Links" />
</body>
</html>
Before
After clicking the Button
See a Live Demo
'Like' us on our FaceBook page if you find this blog useful. Thanks!
Did you like this post?
|
|
|
||
|
|
|
|
Save on Delicious |
|
|
subscribe via rss |
|
subscribe via e-mail |
|
|
print this post |
|
follow me on twitter |




comments
2 Responses to "Remove Links and Display Text using jQuery"sounds good
Excelente tips, me ayudo mucho
v_omar
Post a Comment