HTML/DHTML or CSS what means every of those notions? Which one should I use for follows situation: Let say we are social networking for pets and every user have own profile where he is introducing pets. What do we need to make if we want that user can just simply copy a code or whatever is name for that to their profile on other social networking site and user from other social networking sites see in that profile an image "My pets" which will lead to profile in our site? Thanks
HTML - Hypertext MarkUp Language DHTML - Dynamic Hypertext Markup Language CSS - Cascading Style Sheets A mixture of HTML and Javascript would probably be best, I'm assuming you want the user to click the text area and the URL is automatically copied to their clipboard so they can paste it.
thanks for answer. But can be done that without javascipt? Myspace do not allow javascript. Where our users need to past URL. Just in middle or end of Myspace profile in About me?
The javascript is what copies the contents of the text box to the clipboard, so for example the contents of the text box was: <a href="http://www.yoursite.com/pets.php?uid=123" target="_blank">My Pets</a> Code (markup): Then that is what would be copied to the clipboard, not the javascript which makes it automatically copied to the clipboard. Hope you get what I mean, -CP-