I am trying to close child window if host name are same of parent and child but its

<script type="text/javascript">
        $(document).ready(function () {
            if (window.opener) {

                if (window.opener.location.indexOf(document.location.hostname) != -1) {
                    window.opener.location = window.location;
                    window.close();
                }

            }
        });
    </script>

and getting this error

Error: window.opener.location.indexOf is not a function
Source File: https://xyz.com/default
Line: 100
link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

The location object is not a string, array, or any other object which has an indexOf method. Perhaps you meant to use opener.location.href.indexOf(...)?

link|improve this answer
ohhh!! thanks for this. :) +1. – Govind KamalaPrakash Malviya Dec 24 '11 at 6:00
feedback

The problem is that location is not a String, it is a Location object. You can use toString method of location to convert it to string:

window.opener.location.toString().indexOf(document.location.hostname)
link|improve this answer
1  
Better to grab a specific property (like href) than call toString() though as it's more obvious which value will be used and property access is more efficient than calling a method. – RobG Dec 24 '11 at 6:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.