I'm not sure if I have the jargon for asking this question not being a web developer but please bear with me.
I want to send parameters to a client side HTML page (just a file on a disk no web server involved). My initial attempt was to use a query string and then parse it from window.location.href but instead of the query string being ...
I am creating very simple CMS for my organisation.
My strategy is to embed editable content between tags called < editable >. However to hide these from the browser I am commenting them out. So an example of an editable region will look like this.
<!-- <editable name="news_item> Today's news is ... </editable> -->
With the content "T...
You can change the number at which an ordered list starts like this:
<ol start="3">
<li>item three</li>
<li>item four</li>
</ol>
...but is there a way to make list items have arbitrary numbers, not just consecutive numbering?
<ol>
<li>item two</li>
<li>item six</li>
<li>item nine</li>
</ol>
The only way I can se...
I know that is the reason some people don't approve of them, but does it really matter? I think that the power that they provide, in interacting with JavaScript and storing and sending information from and to the server, outweighs the validation concern. Am I missing something? What are the ramifications of "invalid" HTML? And wouldn'...
Hi, one question about performance.
I have an webproject with different css files in the moment (uncompressed). Every page is including the needed files.
Iam thinking about putting all style definitions in one file, compress it, and put in central in the header.
What makes a better performance ? on file compressed (every page loads al...
I am creating a web page where I have a input text field in which I want to allow only numeric characters like (0,1,2,3,4,5...9) 0-9.
How can i make it using jquery??
Thanks
...
<a class='leftpanel_anchor' tag='solutions' href='javascript:void(0)' > Solutions to <span class='leftpanel_keywords'>firstConResult</span></a>
i have an anchor like this. i want to select the content inside span class 'leftpanel_keywords'. how can i do that with jquery???
...
i want to limit time of exam in the site , after the time is finish ,
alert popup window with message and redirect the user to another page.
the exam contain some pages , the user can turn pages forward and backwards.
i want to prevent (how much i possible) to lie.
...
I understand that rendering a table this large is pushing the limits of any browser. However, I was curious as to why a table that is significantly large (20,000+ rows) crashes Firefox, while all other browsers render it relatively quickly.
I am using ASP.NET and writing the table html directly to the buffer with Response.Write. I initi...
Hi friends,
Make glowing effect around the text box while placing the cursor inside the textbox.
For example : just place the cursor inside the search textbox in our stackoverflow.com.
Its because of css, but i dont know how to achieve it.. Please help me.
...
How to disable the image display for <img src =a.gif > tag
...
I was just playing "Restaurant Empire 2" and it has a pretty complex interface for a video game in which you are basically running a restaurant with tons of sub-menus and complex controls. That video game is more complex than 99% of websites I've seen and used and is probably as complex as most of the software a person running a real re...
If I have the following html:
<body>
<div id="mainTop">
</div>
<div id="main">
<h2>
<%= Html.Encode(ViewData["Message"]) %></h2>
<p>
To learn more about ASP.NET MVC visit
http://asp.net/mvc</a>.
</p>
</div>
<div id="mainBottom">
</div>
</body>...
Hi,
I am building a tracking system for refererrals to our websites and on behalf of other 3rd party website owners. This will include placing a cookie when a customer clicks through to the site and subseqently reading their ID from this cookie if they reach the defined 'success' page.
I have seen a number of different methods used fo...
Are these two equivalent?
<meta name="keywords" content="first" />
<meta name="keywords" content="second, third" />
and
<meta name="keywords" content="first, second, third" />
I have keywords that are applied for all the pages and then I want to have separate set of keywords for each page. Is there any problem with having multiple ...
One of the items in the multiple select box is much longer than the others, is there a way to hack it to make the width of it smaller
<select size="1">
<option>item</option>
<option>item</option>
<option>item is really long</option>
<option>item</option>
</select>
...
Guys, I have a CSS Layout that I am using that has a header, footer and a sidebar on the left. It works great, but the only problem is, I would like the sidebar and the footer to extend to the bottom of the screen if there is not enough content to fill the main content. How do I do this in CSS? I have posted the css here so you can see w...
After the onsubmit event has fired and the form has been submitted (via an action="mailto:[email protected]") , is there a way to then clear the form, close the window or what? Is there a post submit that I can hook into via JavaScript. This must be a client side only solution.
...
Hi ..
Can anyone tell me the best way to position a nested div over the current div.. basically got 2 divs ... outer and inner.. the inner needs to be 20 pixels in and 20 pixels down form the current..
I have
<div>
<div>
</div>
</div>
I tried setting the inner div to relative and top 20px and left 20px and it seemed...
Is there a way to programmatically set the name of a file to be uploaded from a web page? I suspect that browser security restrictions make this impossible, but I'm hoping someone will prove me wrong.
I have a web application that needs to let the administrator upload HTML. The admin selects the HTML file, then the app uploads that fi...