HTML & WEB-Design

Moderators: Jonathan
Number of threads: 1249
Number of posts: 3348

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Ive returned to the web... Posted by Gregry2 on 3 Jul 2005 at 11:52 PM
i've forgot about HTML, the first language i learned...as i lauched to the deep on C, even longing to go near the deep system(I will!)

But i looked back here, to web designing, something i sadly now loathe!
Never hitherto hast mine javascript worked! Thus i strayed from the light of web-design...into the darkness of true programming.

But ho! Hither am I! I have posted a thread on web developing again!!!

Okay enough with the old english and stuff, ill get down to business.

with menus and stuff, its all javascripting and css right? Someone point me in the right direction so i can start again.

Thats it. Thanx.

{2}rIng
Report
Re: Ive returned to the web... Posted by treshr on 4 Jul 2005 at 12:42 AM
Nowadays you don't need to learn how to make javascript menu's. You can just search for those menu scripts in websites like: http://www.hotscripts.com or something.

If you want to learn how to use css you can go to this website: http://www.w3schools.com and click on the "Learn CSS".

Hope this helps you a bit. I've been pratising CSS for a while now and think it's great so if you have a problem just ask.


--=][tReShR][=--

Report
...web... Posted by Gregry2 on 4 Jul 2005 at 5:07 PM
cool! I wondered how they do that...

but i was really asking about pull down...well sort of menus, the ones you click and a list of other links come down? you know...

Thanx again...

HTML still makes my heart quivel...
Report
Re: ...web... Posted by dolev9 on 4 Jul 2005 at 11:48 PM
This message was edited by dolev9 at 2005-7-4 23:49:10

ohhh i guess u mean this

<select name="bla" multiple="multiple" size="1">
<option value="1" selected> tel aviv </option>
<option value="2"> hifa </option>
</select>

remember - its must be inside <form>here</form>.



here is an example of forms i made when i learned all this stuff.....



<html>
<head>
<title>
yckv
</title>
</head>
<body>
<form name="bla" method="post" action="sonort2000@walla.com">
<select name="bla" multiple="multiple" size="1">
<option value="1" selected> tel aviv </option>
<option value="2"> hifa </option>
</select>
<input name="bla3" type="text" size="15" />
<input name="bla2" type="password" size="15" />
<input name="bla1" type="checkbox" size="15" value="1" />
<input name="bla1" type="checkbox" size="15" value="2" />
<input name="bla" type="radio" size="15" value="1" />
<input name="bla" type="radio" size="15" value="2" check="checked"/>

<textarea name="bla" cols="15" rows="20" disabled="disabled" readonly>
TYPES FOR INPUT

TEXT (ABOVE)
PASSWORD
CHECKBOX

</textarea>
</form>
</body>
</html>


dolev
Report
Thank you very much Dolev, but thats not what im talkin about! Posted by Gregry2 on 6 Jul 2005 at 12:52 AM
I'm not asking on forms...

See, like you would move you cursor over(probably a onmouseover thing)i think a table cell and it would expand sort of.

Here go to http://www.cdw.com and move your mouse over the menus that say hardware and stuff and see the drop down menus. Sort of like that.

Im thinking we write the menus (table cells) to the page onmouseover via javascript. and onblur we...erase? see! thats what got me confused

Thanx though, dolev,realy!

{2}rIng
Report
Re: Thank you very much Dolev, but thats not what im talkin about! Posted by dolev9 on 6 Jul 2005 at 7:49 AM
well - i made small research about it.
and i wrote an example:

<html>
<head>
<title> bla </title>
</head>
<body>

<script language="javascript">
function insert()
{
var el = document.createElement("LI");
el.innerText="first menu";
mname.children(0).insertAdjacentElement("beforeEnd",el);

}



</script>


<menu id="mname" style=" position=absolute; top=30; left=10; background-color='red';"
onmouseover="insert()">
<LI>open menu</LI>
</menu>


</body>
</html>



the problem here is that i havent found how to delete it back to how it was.

i keep checking but at least you will have this first.

if you want to do it with image before the first item of the menu.
make an empty menu below the image. empty menu is invisible.
onmouse over on the image add item to the menu.

ill keep checking it to find how to delete back the items.

hope i helped this time....

dolev


Report
Re: Ive returned to the web... Posted by NCS_One on 8 Jul 2005 at 12:59 PM



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.