Jump to content

venky_lb

Members
  • Posts

    13
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

venky_lb's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. im using two div part which calls functions, 1.i ve used onmouseover and mouseout event handlers 2.the logic behind the code is if omnouseover an image toggle_t and onmouseout the div id of the image is hidden,which means the function should be stopped , but my function idoesnt stops. pls copy the code and run it for better understanding
  2. pls find the script below , if it is toggle_tt ,then second_toggle_tt id should be hidden ,vice versa <script type="text/javascript"> function toggle_tt(id, status, xpos,ypos){ document.getElementById(id).style.display = (status == 'show') ? "inline" : "none"; document.getElementById(id).style.left = xpos +2 ; document.getElementById(id).style.top = ypos +2; } function second_toggle_tt(id, status, xpos,ypos){ document.getElementById(id).style.display = (status == 'show') ? "inline" : "none"; document.getElementById(id).style.left = xpos +2 ; document.getElementById(id).style.top = ypos +2; } </script> </head> <body> <div id="tooltip" class="dynarch-tooltip" onmouseout="toggle_tt('tooltip','hidden')"> <div class="dynarch-tooltip-title">user id</div> Enter <b>your</b> name </div> <img src="images/imagespop.jpg" onmouseover="toggle_tt('tooltip', 'show', event.clientX, event.clientY)" /><br /> <div id="tooltip" class="dynarch-tooltip" onmouseout="second_toggle_tt('tooltip','hidden')"> <div class="dynarch-tooltip-title">user id</div> <b> hello</b> <a="#" onmouseover="second_toggle_tt('tooltip', 'show', event.clientX, event.clientY)" >?</a> </body> </html>
  3. my db is mysql, and what exactly i wanna do is that, ->here id is auto incremented ->i want the code to be incremented (code is related to the names ie for car the code is 01) thanks for ur help
  4. can anyone help me in this issue
  5. Hi, consider the following example id code category parent 1 01 car 0 2 011 hyundai 01 3 0111 verna 011 4 02 bus 0 5 021 volvo 02 it goes like this, can any one tell the logic or any link similar to this scenario how to add a new subcategory, which should automatically increment the code i.e my html form for adding record ->used select button and displayed all category in it, ->used a text boc to enter the new record now,i can select anyone of category from select menu(eg car) and entered a new record (eg ferrari).if i click submit it should be stored in db such a way that code 012 pls help me out in this.
  6. Hi, consider the following example id code category parent 1 01 car 0 2 011 hyundai 01 3 0111 verna 011 4 02 bus 0 5 021 volvo 02 it goes like this, can any one tell the logic how to add a new subcategory, which should automatically increment the code i.e my html form for adding record ->used select button and displayed all category in it, ->used a text boc to enter the new record now,i can select anyone of category from select menu(eg car) and entered a new record (eg ferrari).if i click submit it should be stored in db such a way that code 012 pls help me out in this.
  7. HI, pls give some idea or even some links to implement simple wysisig editor with few options Bold,Underline,hyperlink. Freaky regards Ven
  8. Hi, consider the following example id code description parent 1 01 car 0 2 011 hyundai 01 3 0111 verna 011 4 02 bus 0 ig goes like this, now if i delete car that should not be deleted because it has subcategories,but i should be able to delete categories which doesnt has subcategory i.e bus . pls help me out in this. Regards venkat
  9. Hi, i ve installed eclipse in my machine,can any one help me how to install phpeclipse plugin,(i tried in phpeclipse.sourceforge.net/update/nightly/plugins/ but i couldnt install it). Freaky regards Ven
  10. array has been declared outside the class.check the array name and that is given in foreach
  11. Hi Friends, can anyone let me know what is PHP_EOL and an simple script using it. Freak regards Venk
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.