Client's IP Address Retrival
Jul 29, 2005I want to know about a method for detecting client's IP which is running behind a proxy server.
Is there any possible way in Javascript to get the IP address of the client's machine which is using proxy.
I want to know about a method for detecting client's IP which is running behind a proxy server.
Is there any possible way in Javascript to get the IP address of the client's machine which is using proxy.
I am looking for an example/code to get MAC Address with JavaScript or any other technology for a php based web application. The collected MAC Address will be stored in a MySQL table, 'login' to generate reports. I have found some php scripts helping me do this but it does not get the client computers MAC Address. And these examples work only on localhost. While running it on the server the MAC Address is different than the local one.Can we find out the MAC Address for a clients computer anyways to use in the application and which will be cross browser compatible?
View 2 Replies View RelatedI am looking for an example/code to get MAC Address with JavaScript or any other technology for a php based web application. The collected MAC Address will be stored in a MySQL table, 'login' to generate reports. I have found some php scripts helping me do this but it does not get the client computers MAC Address. And these examples work only on localhost. While running it on the server the MAC Address is different than the local one. Can we find out the MAC Address for a clients computer anyways to use in the application and which will be cross browser compatible?
View 2 Replies View RelatedI think it's okay to ask this question in this group, but if not please
point me to the correct one!
How does one go about doing asynchronous updates between two web
clients? Take Google Chat for example... how does Google Chat update a
chatter's chat window with text entered by the other chatter?
Looking for something for my clients, they want to upload and change images on their image gallery but I don't really want to make a CMS program for them since it's a low budget website.
View 3 Replies View RelatedI am wondering what is the way around when the javascript is disabled?
For example, I am creating menu with bunch of drop down lists. The lists are dependant on the others. So, when I change the selection on the previous list, the elements on the next list should change. Of course this won't happen when the javascript is turned off.
I want to make an extensive browser/fileupload script inspired on windows Explorer... A server side listing of the files and directories with the home directory specified in the script and a listing of the clients files. The server side part can be found on http://vegeta.evilkalah.be ... The idea now is to make it possible to upload or download (maybe drag and drop) files from on side to the other. I don't know how I best make the client side. So on this part any help is welcome...
View 6 Replies View Relatedi want to add the link address when clicked on the link in web page to the outlook express address book when the outlook window populates. i tried to put
<a href="mailto:enquiry@mydomain.com" > click here </a>
but it only add address to the To section of outlook window, i want it should store the address in the address book.. of outlook express..
ok im getting tired of looking for an answer and coming up short with
scripts that dont work. i have a application that uses GMT for all its
times and needs the clients timeoffset for showing the correct times
for everything. i use date.getTimezoneOffset() which works fine and
shows the daylight savings time correct value of -4 since im in eastern
standard time and its daylight savings time right now. well eastern
standard time is normally -5 and my dropdown populates with the -4
showing atlanta time. which will confuse the user and then they will
pick -5 eastern time which will make everything an hour off. i have a
disclaimer now, but i just want to know what the easiest way to display
the users time zone name useing the getTimezoneOffset() value. i
really want to be able to detect if the user has the adjust for
daylight savings checked for their machine.
I have created a javascript function to make a message fade out in my clients panel. Here is my function:
[Code]...
It shows the 'faded' alert message but it doesn't fade the area? How can I fix this?
First of all excuse me if I posted this thread in the wrong forum, I really have no clue where to put this but I've had some minor experience with js so I hope it can be solved this way. I check websites and/or keywords in googles Keyword Tool External as a free service for some of my clients. The thing is that more and more clients like this service and it's becoming very time-consuming for me to do this for all of them.
Is there a way to let my clients fill in the keywords or url they like researched in a form on my website, then let those words be researched and return a specified number of results in a pdf or something? My biggest concern is the captcha code. If I can't find a way to partially or fully automate this process, I'll be forced to either charge for or completely give up this service.
I have been looking for a solution for a long time. I have embedded a SWF app in html page using SWFObject. Now I need to give the Flash app the address where it is currently embedded, since the same SWF file is embedded in more than one locations! So the Flash app is supposed to pull the right content according to its current position
View 9 Replies View RelatedI already have a server connected to clients, clients send msgs and it echoes back to all of them and now i want when a client sends a msg it echoes on his server and the other server too .. so when any of the clients on any of the servers sends a msg it is broadcasted all over the servers to all clients
[Code]...
I want to know how can i make javascript that i can use by run into in address bar.. I just need such javascript that run through address bar. My purpose is How can i check all check box in webpage that do not include all check or uncheck button? Best common example for check all or uncheck all is
[Code]....
Is this possible??? I am working on a server which does not have Server Side Includes.
Is there anyway to get a clients IP address using JavaScript without SSI?
I know you can use javascript in the address bar to display alert
messages and misc. stuff like that. But when I try and control some forms it loadsa a new page for the loaded example...
eg.
javascript: document.forms[1].elements[1].checked=true;
would load a blank page with 'true' written on it, is there a way to make
the checked box checked through this method?
How can I get the client's IP address from within an HTML page using embedded JS? Code:
View 8 Replies View RelatedI Need to get the URL of the page from the address bar and then retrieve a certain part of the url from that.
[URL]
I need to get the part after the # and only that part. How would I do this?
Instead of using javascript:alert('hi'), suppose I store alert('hi') in x.js and put it on host.com/x.js. Is there a way to execute host.com/x.js directly from the address bar using javascript:?
View 2 Replies View RelatedI'm just coding a pop-up window and do not want the address bar to appear.
Or if it is even possible?!
My code is currently:
[CODE]
window.open('/flash_popup.php','win','height=600,width=695,toolbar=0,scrollbars=0,fullscreen=0,left=150,location=0 ,menubar=0,resizable=0,status=0');
[ICODE]
I have a simple little code script and I'd like either the onClick function (or the entire code itself, whichever is easiest) to only load once every 24 hours for each IP address. So "123.1.22.333" should only get the effect of this code once every 24 hours regardless if they revisit my site 5 times a day let's say.
View 2 Replies View RelatedI am trying to split an IP address into it's 4 octets using a RegExp and assigning the result to an array but it is not working. Here is my function so far:
<script type="text/javascript">
function lastoctet(ipaddress){
var ipoctets = new Array();
ipoctets=ipaddress.split(/(.)/g);
alert(ipoctets);
}
</script>
Instead of using javascript:alert('hi'), suppose I store alert('hi') in x.js and put it on host.com/x.js. Is it possible to execute host.com/x.js directly from the address bar using javascript
View 4 Replies View RelatedDoes anyone know of any javascript that will get the users ip address? I can do it in php, but want it done in javascript.
View 4 Replies View RelatedCan any one hlep me in disabling address bar in IE7.0 using javascript. In IE 6.0 if you give locaiton = no, it will disable the address bar.It was not working with IE 7.0.
View 24 Replies View RelatedI found this great script to auto fill a ship address based on the bill address Code:
View 1 Replies View Related