Forum: JavaScript / DHTML / AJAX Mar 17th, 2009 |
| Replies: 11 Views: 2,137 claritydigital, you have learn how to search in google before u start learing ajax. When u search ajax in google the third result itself is a good tutorial site (w3schools). Also u can get unlimited... |
Forum: JavaScript / DHTML / AJAX Mar 17th, 2009 |
| Replies: 0 Views: 452 I am using a a customized google map which is used to show properties for sale in a specific area. There tree level for this ie by Country, State and City and is done using list menu. It is working... |
Forum: JavaScript / DHTML / AJAX Mar 17th, 2009 |
| Replies: 3 Views: 1,584 It will be easy for us to help you if you are a little more specific.
are you using db for fetching data or from array?
I assume you are using db then it is very easy
like
SELECT * FROM... |
Forum: JavaScript / DHTML / AJAX Mar 17th, 2009 |
| Replies: 1 Views: 1,803 I think creating cookies along with session with same values will solve your problem. |
Forum: JavaScript / DHTML / AJAX Mar 17th, 2009 |
| Replies: 2 Views: 3,417 I dont know it is correct or not but try using
document.getElementById("anyName")
or
document.getElementByName("anyName") or something like this
for handling items in the DOM instead of... |
Forum: JavaScript / DHTML / AJAX Nov 24th, 2008 |
| Replies: 5 Views: 1,835 Thanks a lot, This is working
but i mean removing the print header and footer ( like page title etc. )
also i tried as 'essential' said but, that also is printing the whole page and also got the... |
Forum: JavaScript / DHTML / AJAX Nov 22nd, 2008 |
| Replies: 5 Views: 1,835 if (window.print) {
document.write('<form>Click Here To ' + '<input type=button name=print value="Print" ' + 'onClick="javascript:window.print()"> This Page!</form>');
}
using this code the... |