Hi,
I have an HTML page, and I would like to import data from a database. Will it be possible to do it without using a programing language such as Java, .NET, PHP etc?
thanks
Hi,
I'm curious what are some effects/downside of not putting an index.html file to your directories (e.g images). I know when an index file is not present to a directory, files inside that directory are no longer private and will be visible to the browsers when point (eg yoursite.com/images/). Aside from that what are some big effects to consider? and how to properly secure them.
thanks!
In my db I have saved every links in the form:
www.example.com or http://www.example.com
Is there a way to turn this text links into HTML links at the client side ( e.g. javascript ) with tag and parameter like this ?:
<a href="http://www.example.com" rel="nofollow">www.example.com</a>
Hi, I have heard a lot of different terms to describe the process of turning a website design into a editable CMS. Currently I take the design and "slice" this up into HTML and CSS then I "plug" this into a CMS. I would class this as frontend development depending on the level of customisation required for the CMS.
The reason I ask is I am currently writing up my CV and have become stuck on the correct term for this.
Kind Regards
I'm trying to display an html source ( without interpretation ) and I'd like all the nodes to be selectable (p, div, etc..). Something like in firebug where if I click on a node I can get it's properties. Does anybody have an idea how to do that or where to start ?
Hi,
What is your opinion about using non valid attributes on html elements for easier jQuery selectors etc ?
Eg.
<div name="myDiv"></div>
According to Visual Studio the name attribute is not valid for a div element.
I have multiple pages being pulled together into a single page. Some of these individual pages have their own html, head, and body elements. Is it detrimental to the performance of the page to have these? It seems that the DOM is correct (only has a single of each element) in FireBug.
Hi!
I have a workflow model.
Internet Explorer doesn't support some features required for model editing functionality
(and regular user doesn't need it).
I want a read-only preview of my model.
Is it possible to server-side render my html to image?
hey guys , one simple way to make an object center in html is using align='center' but belive its not working for a div
i used these methods ":
style='text-align:center'
style='left:50%';
even i use center tag
<center>
but i couldnt make my target div to be center
what way u suggest ?!
i need to set a image at 128*128px on a html page. i know the way width="128px" height="128px" but are i can do it by write a parameter on image like param="128px" then he set width and height 128px;
I'm trying to get the HTML data of a website so that I can parse it. I have parsing bit sorted out but using the following code doesn't seem to work:
NSData *data = [[NSData alloc] initWithContentsOfURL: [NSURL URLWithString:@"http://thewebsite.net"]];
Is this the way I should be doing it or is there another way?
document.write("window.location.href");&layout=button_count&show_faces=true&width=450&action=like&font=arial&colorscheme=light&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:21px;" allowTransparency="true"
i am trying to bind current url of my page to this html
how can i do that
So I have image on my html page. I want uipdate it 14 times per second smoothly (with some default Jquery effect) (update image with one from URL same as image has ... or refresh if it sounds better) How to do such thing?
I want to enable comment posting on my page, so i need to execute some html encoding before post is sent and inserted into a database.
What is the ideal side for this?
Sever side(I work with asp.net) or client side (javascript)?
hi,
I want to change the title and summary of my website on google search results.
Is enough to change the meta-data and title on my html files, and wait few weeks to let google update the results ? (how long does it take on average ?)
thanks
I have this form on which I would like to create a dynamic number of dropdowns. I have a list of categorized applications which I would like each to have its own dropdown that submits data for each dropdown. The dropdown options will be the same for each. Here is my code. I am not sure how to pass the unique data to the server. As you can see I currently have an iteration over a list of applications that I would like to make each select in that iteration its own dropdown. Thanks in advance.
<html:form action="/CategorizeApps.do">
<h3>Uncategorized</h3>
<br/>
Categorize each application using the dropdown menu then click categorize.<br/>
<table class="list">
<thead>
<tr class="controls">
<td><input type="submit" name="btnAction" value="Categorize"/></td>
</tr>
<tr class="fields">
<td>ID</td>
<td>Name</td>
<td></td>
</tr>
</thead>
<tbody>
<logic:iterate id="uncat" name="appsUncat" scope="session">
<tr class="hlist">
<td><bean:write property="id" name="uncat" scope="page"/></td>
<td><bean:write property="name" name="uncat" scope="page"/></td>
<td><select id="category" name="category">
<logic:iterate id="categories" name="Categories" scope="session">
<option value="<bean:write name="categories" property="id" scope="page"/>"><bean:write name="categories" property="name" scope="page"/></option>
</logic:iterate>
</select></td>
</tr>
</logic:iterate>
</tbody>
</table>
</html:form>
Hi!
I want to add some style to head tag in html page using javascript.
var h = document.getElementsByTagName('head').item(0);
h.innerHTML += '<style>a{font-size:100px;}</style>';
But when I run this code in IE8 I see this error message:
Could not set the innerHTML property. Invalid target element for this operation.
Any ideas?
Hi.
I need to create a class Toolbar : Windows.Worm.UserControl (Framework 2.0) and to place it into HTML page. This page must work in IE6+.
I found some examples and created my toolbar, but IE doesn't want to display it.
Site with examples:
http://feishunji.blog.51cto.com/237830/45990
Please, help to solve this problem.
I'd like to generate completely random piece of html source, possibly from a grammar. I want to do this in python but I'm not sure how to proceed -- is there a library that takes a grammar and just randomly follows its rules, printing the path?
Ideas?
Hi,
I'm trying to construct a two row table similar to following:
---
-
where the bottom is filling the space of the upper row. Is this possible using CSS? In HTML I can do things like colspan.