html

Custom HTML in a day with FullCalendar?

Is there a way to add, specifically, form elements for every day that are distinguishable per day? Below is an example. I know FullCalendar is built to handle "Events", so from what I can tell in the docs, it's not really possible. But I'm not a Javascript guru either, so would anyone else know of a solution? I'm hoping to not have t...

IE HTML&CSS Display Problem

Hello, For some reason browsers other than firefox display page below without style. http://cp.nobilityonline.com/ What's wrong? ...

Dropdowns don't work on webOS with PhoneGap?

I'm trying to use a dropdown in a PhoneGap app I'm writing. It uses a simple <select>: <select> <option value="1">First</option> <option value="2">Second</option> </select> This works fine on Android and the iPhone (including behaving like a native drop-down would on those systems). However, it doesn't appear to work on webOS (nei...

Is there a way to stop Firebug from working on a particular site?

Is there some way to make Firebug not work at all on a website? ...

Automate Field Entry in outside site

I am attempting to automate the entry of data into form fields. The problem is that this data (user/pass) is not known by the user. I'm not expressly hiding it from them, but they also don't need to know it. This is used to automate logins on several of our outside partner websites, who do not want our agents knowing their passwords. Sa...

Custom height in Lightbox2

Is there any way to set a fixed/custom height for ligtbox2? #lightbox img{ width: auto; height: 600px;} This only resizes the img and not the outer container. ...

ASP.NET ListView - Render THEAD/TBODY Tags

I have an ASP.NET ListView control (see below). Unfortunately, when a ListView control is rendered is does so absent of HTML tags such as THEAD/TBODY. This is causing a problem for me because the CSS styling that I'm using needs those tags. <asp:ListView ID="ListView" runat="server" DataKeyNames="Id"> <LayoutTemplate> ...

Is is possible to parse a web page from the client side for a large number of words and if so, how?

I have a list of keywords, about 25,000 of them. I would like people who add a certain < script> tag on their web page to have these keywords transformed into links. What would be the best way to go and achieve this? I have tried the simple javascript approach (an array with lots of elements and regexping/replacing each) and it obviousl...

asp.net dynamic HTML form

Hi, I want to create an html page inside a asp.net page using c# and then request that html page. The flow is, I'll be creating a request that will give me a response with some values. Those values will be stored in hidden fields in the html page I'm creating on the fly and then requesting. I figure it would be something like below but I...

jQuery Collapse (with cookies), default open instead of closed?

Hi. I've got a jQuery snippet which basically allows a user to toggle a div, open or closed - their preference is saved in a cookie. (function($) { $.fn.extend({ collapse: function(options) { var defaults = { inactive : "inactive", active : "active", head : ".trigger", group ...

Reading from the HTML DOM returns UTF-8 characters

I have a contenteditable div where I'm reading individual characters and sending them off to a server (for more background this is similar to Google Wave where typing a character automatically sends it) I was using a plain old html textfield before and everything worked fine until I "upgraded" to a contenteditable div. My problem is th...

Update one list from another

I have two multi-select lists in HTML - one of categories, and another of items. What I want is that, when an item selected in the "category" list, everything in the "items" list from that category is also selected. For example, if "Categories" contains "Animal", "Mineral", and "Vegetable", and "Items" contains "Dog", "Cat", "Monkey", ...

Displaying the website's content (html) through the specific browser - is it possible to realize?

I'm interested is there a possibility that could allow to display website's content or to say exactly an HTML through a specific browser installed on the web server? I mean something like a module for a web server may be, that can display the website's content through the built-in browser, ignoring the clients browser? If this possibil...

wordpress adnimistration page

anyone know of a site that explains how wordpress created its appearances in wordpress (on the backend) i like how the navigation was created and i am trying to drill down to see what makes it tick but its a heck of a mess of code. has anyone launched anything online that you know of explaining how these peices were made? maybe something...

Keeping footer visible and height 100% in CSS

I'm trying to create a very simple page that contains a container, a header, a left column and a footer: <containter> <header /> <content /> <leftBar /> <footer /> </containter> I want to use the 100% of the height, as I can do with the width, but I simply dont get it work.At his moment I'm usingmin-height, but how could I use theheig...

Float right is not working in IE 7 but works in FF IE8

I have this code <div id="facebook_bar"> <div style="float:left;"> <img src="images/topbar_followus.png" width="70" height="25" /> <img src="images/topbar_twitIcon.png" width="30" height="25" /> <img src="images/topbar_fbicon.png" width="30" height="25" /> </div> <div id="newsletter_box"> <img src="images/topbar_s...

@import doesn't work when suffix isn't .css?

This works: @import "foo.css" This fails: @import "foo.cssabc" Any reason for this? ...

How to show html template using inline styles only?

Hi, I want to display html template in a webpage. The styles of that template is specified inline. But when i try to display it in my webpage, some styles that are defined in my css are adding into it and the template is not displayed properly. This template is used to create mails and when i send this template as mail to my gmail accoun...

If I want to use a specific font that I know it is not available in most of the user's computer

Hi All, If I want to use a specific font that I know it is not available in most of the user's computer, is it possoble to embed the font in my web site in some way? I have gone to some web site using special fonts as text, but not as image. I wonder how it works. Thanks Mayur ...

html anchor: <a>

I just found that <a href="#comment:9"></a> can work the same as <a name="comment:9"></a>, which is more standard? ...