[twincling] how to design software like del.icio.us

2007-11-03 Thread Dinesh Nidamanuru

Hi.every one

I am trying to design a software like del.icio.us in mozilla.
but i dont know anything about the things that i should practise.
i have asked saifi sir regarding those and he answered me abt the 
languages that i should go thorugh.
java script
css
xml
xul

here is what i wanna tell u and i need some help from you professionals. please 
help me
 
Thanking you.
 N.Dinesh



[twincling] how to design software like del.icio.us

2007-11-03 Thread Dinesh Nidamanuru
hi

actually i wanna make the same like delicious that is make a button on browser 
so that when we click on that. our respective link in address bar should be 
copied to data base.and stored.when we look for the links again. we have to get 
those back first i want to restrict that to standalone pc.
can u suggest me the way that i can go ahead?

-Dinesh

Rajshekhar AP [EMAIL PROTECTED] wrote:   Hi Dinesh
 
 When you say a  software like del.icio.us, what are the functionalities that 
 you have in mind. If you can detail that we can help you.
 
 Thanks
 AP  
 On Saturday 03 November 2007 13:06, Dinesh Nidamanuru wrote:
  Hi.every one
 
  I am trying to design a software like del.icio.us in mozilla.
  but i dont know anything about the things that i should practise.
  i have asked saifi sir regarding those and he answered me abt the
  languages that i should go thorugh.
  java script
  css
  xml
  xul
 
  here is what i wanna tell u and i need some help from you professionals.
  please help me
 
  Thanking you.
   N.Dinesh


Re: [twincling] small doubt with java html

2007-11-13 Thread Dinesh Nidamanuru
hi...
i have written the code like this  ..and i got itthankyou very much.

form name=test action=2.html method=post  onsubmit= return funct();
input type=text name=z 
br
input type=submit value=submit
script language=javascript
function funct( )
{
 
if  (document.test.z.value==) 
{
window.alert(please fill the details );
return false;
}

return true;
}


Regards
Dinesh.N


Re: [twincling] HTML Doubt

2007-11-21 Thread Dinesh Nidamanuru
my doubt is not that.

i  clearly wrote the code in the previous mail.
please look at that.
The scenario what you have told can be but my doubt is not that.

Dinesh.

Satish Vellanki [EMAIL PROTECTED] wrote:   Hi 
Dinesh,
 
 Let me try to rephrase what you asked.
 
 You have 2(or more) text boxes(check box or radio button?) and when the user 
selects one of these and clicks a button, the selected element's text should 
appear in a different text box?
 
 You just get the text or checked status of the field in your onclick() 
function and set the value of the text box to it.
 
 See this page on how to access HTML DOM in JavaScript: 
http://www.w3schools.com/htmldom/default.asp
 
 -
 Satish Vellanki