Skip to content

Author: admin@master

Open link in new window or focus to it if already open

I have a link which should open in a new tab, but if the tab is already open, just switch to it. I’ve tried with javascript, wnd = window.open() and than wnd.focus(), that works in Chrome 19, but not in FF 13 or IE 9. Here’s the code I’ve written : Any idea how can I open or switch to

Sorting in Javascript with special characters

I have an array with the following values and i want to sort it in javascript in the following way in to three parts. word starting from special character word starting from digit word starting from alphabets. So this should be the sequence of the sorted array. EDIT: Here’s a function that I’ve be…

Determine if Lat/Lng in Bounds

I’m interested in determining if a lat/lng location is within the bounds and looking for recommendations on a algorithm. (javascript or php) Here is what I have so far: will this work? thanks Answer The simple comparison in your post will work for coordinates in the US. However, if you want a solution t…