dhtml

Using custom buttons with js & php

How can I make a form with my own "submit" button & post the info to a php server side? how can I get js to post it? ...

Flash under dhtml menu

I'm struggling with this probelm for few hours and it's drives me crazy. I want my drop down menu put over flash area and it works but only in FF. Unfotunelly IE and Opera shows my menu under flash. The DHTML menu system is the simplest as possible and it was wrote from scratch by me. I've been trying everything, and still it doesn't...

selecting text by ignoring inner Elements of div tag javascript

<html> <body> <script language="javascript"> function getSelectionHTML() { var div = document.getElementById("myDiv"); if (document.createRange) { var textNode=div.firstChild; var rangeObj=document.createRange(); rangeObj.setStart(textNode,0); rangeObj.setEnd(textNode,5); div .innerHTML =...

html - selection range - getting the range + starting node + ending node + distance

From my previous question for selecting specific html text, I have gone through this link to understand range in html string. Actually I am confused here very much. My question is as follows. For selecting a specific text on html page. We need to follow this steps. assumed html <h4 id="entry1196"><a href="http://radar.oreilly.com...

Windows Media Player toolbar obscures DHTML layer on Firefox

Hi, I have a DHTML layer that floats across a webpage. Everything is working with the DHTML layer, except when it goes pass the Windows Media Player toolbar. It goes behind the toolbar. Any idea how to fix this? Thanks in advance for your help. ...

Java Applet question regarding data manipulation

Generally, how does a java applet manipulate user data? Take for instance "shopping carts" on shopping websites - after a user enters the data, is the data then preloaded each time a user accesses a website? Or is the data retrieved as the user is on the page? ...

Displaying a DHTML layer over a Silverlight UI...

I have a MOSS 2007 publishing site which incorporates some Silverlight components on various pages. Beyond a few areas the rest of the site is SharePoint and ASPX (i.e. standard HTML/javascript). I'm looking at incorporating a dynamic/dropdown menu to the main navigation. Unfortunately on a few of the pages the menu sits close to a ...

What is a .dhtml page?

What is a .dhtml page? ...

Is existed web markup languages with possibility insert sql query?

Actually what I want - simple DB with simple User Interface. Like MS Access, but for web and it can be without Dragn n Drop, but described with markup language. For example if I want to create list report, then i need to write something like: <table query="SELECT * from mytable"></table> It needed for simple data applications. In that ki...

Using jQuery's animate(), if the clicked on element is "<a href="#" ...> </a>", the fucntion should still return false?

I was reading jQuery's page for animate() http://api.jquery.com/animate/ Its examples don't mention about if using <a href="#" id="clickme">click me</a> ... $('#clickme').click(function() { $('#someDiv').animate({left: "+=60"}); }) we actually still have to return false like in the old days? $('#clickme').click(function() { ...

How to find the width of the div or check wheather horizontal scroll apeear or not?

I want to print the page (div) if there is no horizontal scroll appear for that div. I have a div (1000px) with dynamic data which having property overflow:auto;. So, i want to print the div only if div's width is not getting crossed. to achieve this i used following method of a javascript var curr_width = parseInt(mydiv.style.width); ...

Does anyone actually use the phrase DHTML anymore?

I'm not sure if this is exactly appropriate but I have what I think is a interesting question. Does anyone actually use the phrase DHTML anymore in a professional environment? I came across the the word the other day for the first time in years and shuddered at the thought of it. To me the acronym Dynamic HTML just sounds so 1999, it b...

Check users resolution in css?

is it possible to behave according to the user's resolution? ...

JavaScript table type errors

I have a search criteria table that I want the user to be able to grow and shrink based on how specific they want their search to be. Here is the HTML for the table: <html:form action="/queryDocuments"> <table id="searchTable" align="center" style="background-color: #cccccc; font-family: verdana"> <tr> ...

jquery fadeout issue on blur

hi StackOverflow! I have a problem with JQuery and the following markup. <div id="ParentContainer"> <div class="main"> <div class="sub1"></div> <div class="sub2"> text </div> </div>...

DHtml grid 1.1 is not working in firefox

Can somebody tell me some steps to make the DHtml grid to work in Firefox ? 1. I cannot see the grid data properly. 2. Client side Sorting is not happening. 3. Edit cell is not editing properly. ... ...

getElementById in a FOR loop not working

I'm not sure why this isn't working. I have a record list of text fields in a form: <input type="text" id="x1_Order"> <input type="text" id="x2_Order"> <input type="text" id="x3_Order"> <input type="text" id="x4_Order"> <input type="text" id="x5_Order"> ... <input type="text" id="x253_Order"> <input type="text" id="x254_Order"> <input ...

Facebook type popup drop down lists recreate (image attached)

Hello , Was hoping someone could point me in the right direction, perhaps to a tutorial on how to create these popup drop down lists like facebooks who liked this link.. I'm assuming its jquery? Any ideas guys? ...

Strategies for rendering HTML with Javascript

I take a fat JSON array from the server via an AJAX call, then process it and render HTML with Javascript. What I want is to make it as fast as humanly possible. Chrome leads over FF in my tests but it can still take 5-8 seconds for the browser to render ~300 records. I considered lazy-loading such as that implemented in Google Reader ...

Capture iframe load complete event.

Is there a way to capture when the contents of an iframe have fully loaded from the parent page? ...