Your HostICan Community  


Go Back   Your HostICan Community > Programming & Design > Javascript / Java Applets

Javascript / Java Applets Are you a JavaScript guy? Do you need help with JavaScript? This is the place to talk about anything related to Java.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 08-08-2009, 11:23 AM
darkang darkang is offline
Junior Member
 
Join Date: Aug 2009
Posts: 3
Default function in a page of my web hosting

Hello,
I'm trying to write a function in a page of my web hosting that should do the following: to gather information about all links that are in the div tag and when the visitor select a checkbox from my website these links to be disabled. Any help would be welcome.
Reply With Quote
  #2  
Old 08-08-2009, 11:40 AM
hood's Avatar
hood hood is offline
Member
 
Join Date: Jan 2009
Posts: 99
Default Re: function in a page of my web hosting

I guess that will be helpful. Connect to your hosting account and add this code into the page.
HTML Code:
<div id="someID">
 <input type="checkbox" onclick="disable_elements(this, 'someID')" checked>
   <a href="1">1</a>
   <a href="1">2</a>
   <a href="1">3</a>
   <a href="1">4</a>
</div>
<script language="JavaScript">
<!--
function disable_elements(cb, id)
{
var div_links = document.getElementById(id).getElementsByTagName("a");
  for(var i=0; i<div_links.length; i++)
  {
      div_links[i].disabled = !cb.checked;
      div_links[i].onclick = cb.checked ? function () {return true;} : function() {return false;};
   }
}
//-->
</script>
I used comment tag in JavaScript to can successfully validate your page because the script contain (<) element.
Reply With Quote
Reply

Tags
function, hosting, page, web

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 12:58 AM.


Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.

Copyright © 2003 - 2008 HostICan. All Rights Reserved.