User Profile

Collapse

Profile Sidebar

Collapse
The Devil
The Devil
Last Activity: Mar 2 '08, 07:59 PM
Joined: Dec 17 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • The Devil
    replied to Dynamic input form...
    Thanks !
    That gave me an idea how to fix the problem ! Thanks a lot !

    Best wishes !
    See more | Go to post

    Leave a comment:


  • The Devil
    replied to Dynamic input form...
    Couldn't someone help me ?
    See more | Go to post

    Leave a comment:


  • Hi,

    http://kourbatov.com/faq/openinga.htm
    here you can see an example of what you're trying to do. It shoes only the minimize button but the maximize button could not be clicked and you can't resize the window. I'm not sure if the minimize button could be disabled ...

    Best wishes....
    See more | Go to post

    Leave a comment:


  • You're right. It's almost impossible to make that security with right click. It's just annoying, because I could just open the source via View->Page Source ( in FireFox ) and I don't remember where it was in IE ... Every new web browser has that option of viewing the sites source. The right thing to do is just to make you're site scripts compatible with each other only. I've done that and it's not so difficult but you'll need some time.
    ...
    See more | Go to post

    Leave a comment:


  • Hi there,

    This is just a simple example of a script I made for you:
    Code:
    <HTML>
    <HEAD>
    <TITLE>TextAreas</TITLE>
    <script type="text/javascript">
    function insertTextAreas(form) {
        textAreas = document.forms['myform'].selects.value;
        var container = document.getElementById("areas")
        container.innerHTML = '';
    ...
    See more | Go to post

    Leave a comment:


  • The Devil
    replied to Javascript and height of an element
    Thanks. That works fine and it's exactly what I needed :)
    Best wishes...
    See more | Go to post

    Leave a comment:


  • The Devil
    started a topic Dynamic input form...

    Dynamic input form...

    Hi,

    This is not just a simple input form made with javascript. This is the code:

    Code:
    <html><head>
    <script language="JavaScript">
    var i=0;
    function add(inputEvent, inputDur, inputCode, placeEvent, placeDur, placeCode, placeDel, elmnt, inputButton) {
    
    
        var event = document.getElementById(inputEvent);
        var val = document.getElementById(inputDur);
    ...
    See more | Go to post

  • The Devil
    started a topic Javascript and height of an element

    Javascript and height of an element

    Hi,

    I'm facing a problem with this one. I made a js script which checks the height of an element and increases it with 30px. Everything is working fine but then comes the problem with summing the height and 30 px.

    This is my code:
    Code:
    function add(elmnt)
    {
        if(elmnt != null || elmnt != 'undefined')
        {
             var height = document.getElementById(elmnt).style.height;
    ...
    See more | Go to post
No activity results to display
Show More
Working...