I've seen a few sites that use this. Not sure which script they're using exactly, but you don't need jQuery to do it (although it would make it easier). That top bar has a fixed position with a...
It's an outdated way of tracking how many visitors your blog is getting. Most developers integrate Google Analytics into their sites now, which is much more robust
Sorry, I meant server side scripting language, not client side. When you submit a form, it gets sent to whatever script is specified by the action parameter. So if you have <form action="process.php"...
javascript and html have no knowledge of tabs. You can use target="_blank" to open the link in a new window, but it's still up to the browser how to handle such a link. I wouldn't want to use a web...
I say learn some back end scripting like you mentioned. You could go with PHP, Ruby, .NET, Coldfusion, etc. Then learn some SQL and server management like Apache, Tomcat, IIS. Work with these for a...
Try changing <script language="javascript"> to <script type="text/javascript">. The language attribute is deprecated so browsers might not support it. The <center> tags are also deprecated so you may...
the MAILTO feature only opens the client's email program. The client will still need to manually click on submit to send the email. To send an email otherwise, you will need to use a server side...
are you using a liquid layout for your page? If you're using a fixed width layout the browser resizing shouldn't change it. If you're using a liquid layout you should use percentages instead of...
If everything is going to be loaded initially, a non AJAX approach will work to hide the ones that are not needed. But either way JavaScript is needed to listen for the event and show the appropriate...
you won't be able to write to files with javascript unless it's a cookie. You can do with PHP though. You could use AJAX to fire the request to a PHP script which will load the file and write to it...
if I understood you correctly, you want to populate a table after a click event on some dropdowns. You could either do this with AJAX or render a new JSP view with the table populated.
a good place to start would be to use valid HTML. You are writing your element attributes incorrectly. There shouldn't be a space between the attribute and the = sign, and there should be a space...
you want the focus to change from one input box to the other? I don't think that's possible with CSS. You're describing a behavior, not a style, so you will need javascript.
The target attribute is useless on an option tag. Since you're opening the pages with javascript instead of anchor tags, you need to place the logic in your javascript. The window.open method opens a...
I'm seeing the issue in IE7 only. IE8 and 9 handle it well. I noticed that the #right div is floated right. It might be an issue of this float removing the height of the container. Try adding a...
posting in a relevant forum will help you get more replies. The issue you are having is a front-end issue and doesn't have much to do with ASP. You would have gotten more replies if you had posted it...
There's not much you can do. The height of a page is determined by how much content there exists in it. I have a 1900x1200 Dell Ultrasharp and I know what you mean. Web pages that don't have much...
To create a web application you can use any language. There is no one "best" language except the one that works best for you. Common server side languages are PHP, C#, Ruby, Java and Coldfusion. Each...