Help: Java web app framework like ASP.Net
Can anyone suggest a Java Web Application framework something like ASP.Net? Thanks. ...
Can anyone suggest a Java Web Application framework something like ASP.Net? Thanks. ...
I would like to left-align a table with CSS, in a way similar to align=left in standard HTML, but I understand that this is bad form. Is there any way to do this? If not, is there a way to format a left-aligned list of links that is next to content without using tables? ...
The browser on the iPhone is capable of using advanced web technologies introduced in HTML5. One of these is the app cache that allows web pages to run on the client, from the cache, without a connection to the internet. Together with Local Storage you can also save data permanently "in" the page. My question is, would it then be possib...
I'm writing a page where I need to get the value attribute for the selected option within a select tag. The way I usually do it like this: onchange="changeCurrentWebsite(this.options[this.selectedIndex].value) However every time I use ".value" in Javascript my IDE(Intellij) complains that that symbol is deprecated... Does anybody know ...
This is related to my previous question about selecting visible elements. Now, here's the twist: Let's say I want to select the odd children only from the set of visible children of an element. What would be the best way to do this? Edit: here is an example of my input and expected output. <!-- A list with some visible and invisible ch...
I've spend a fair amount of time on website optimization (YSlow, Google's Page Speed, etc), and now I'm thinking more and more about improving the accessibility of my websites. However, it seems like that they are competing interests at times. If I include separate style sheets for screen readers, mobile devices, etc, those are additio...
In Magento the default reports are very limiting. I have been trying to create custom reports that show more information. I have tried creating a module to recreate an existing report but am not having a lot of success. I know there is an easy way to change existing reports but it involves changing core file and wouldn't give the same f...
Background I was creating a secondary navigation menu using embedded unordered lists with anchors and headers. Using a CSS reset sheet all headers and anchors are set to "display: block". When list-style-position: inside is set Firefox and Camino render the headers and anchors below the bullet while Safari, Camino, and IE render it inli...
I have a group of buttons on my web page which all have an id that end with the text "EditMode". I'm using jQuery to assign an event to like so $('[id $=EditMode]').click(editHandler); However now I want to prefix the id with a name (which I will know in advance) so the id would be "aName+someotherstuff+EditMode". How do I alter the ...
Most web sites you can log on to also provide the feature so it remembers you between sessions. What's the accepted and secure techniques for implementing that ? (What do you put in the cookies and how do you handle it on the server/db?) ...
Hi, I'm a frontend web developer working for a company at the moment that has a lot of RIA design going on in the backend but it also caters almost entirely for UK local authorities and social workers. For those of you not too enlightened about local authorities/councils here in the UK, they tend to be rather slow on the uptake of new ...
From a security perspective, I can see simply doing an 'eval' on incoming JSON data as a critical mistake. If you got data like below you'd have some problems. { someData:((function() { alert("i'm in ur code hackin' ur page"); })()) } I wondered what do most popular Javascript libraries do? Is it a manual parse or simply an eval...
ok im new on the scene with php and sql, i read the basics and was able to produce a DB driven shoutbox. This is my website http://www.teamdelta.byethost12.com/ What i want to do next im not sure what i should be using java? php? sql? i have no idea... but i assume php and sql if sql can do what i think it can.. What i want to do next i...
I'm working on a small web application that will let users enter calendar events. For the description of the event, I would like them to be able to do the following: Set bold text Set italic text Create a link Absolutely nothing else For example, if someone tries to paste "Nasty Hot Pink Text" from Word, I don't want that to work the...
I've just finished a web application written in PHP. I thought it was as easy as compressing my .php files and dumping my database in order to decompress those files in the "production" server, creating the database structure and database user, but it doesn't work. Several php files have include directives that are not working, I was usi...
I have some javascript that manipulates html based on what the user has selected. For real browsers the methods I'm using leverage the "Range" object, obtained as such: var sel = window.getSelection(); var range = sel.getRangeAt(0); var content = range.toString(); The content variable contains all the selected text, which ...
How would you go about coding an interactive website to display stats/graphs. Say I wanted to create something interactive for people to look at Stackoverflow stats - something that looks like awstats / google analytics but allows you to drill down to stats/graphs like: All questions: total, by hour of day, by day of week (interesting...
I have my site under construction, and I want to have a little form (name, email) where people can submit it to be notified when I launch my site. Much like you see on Beta invite sites etc. How would I go about that? ...
I'm designing a header which is made of 3 parts. The page must be fluid: min-width:940px; max-width:1200px; The first two parts of the header will be fixed size: left middle right <---------><---------><-----------------> 134px 183px (Fill the remaining space) I'd like the right part to change depending...
Several times I got into conditions my scripts threw alerts in high rates. While there is an alert modal window open, you can't do any other action in the browser. I am looking to develop an add-on that will enable me to kill or suspend the "thread" the alert modal window belongs to. In What direction should I look? ...