Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

window

how to open window using javascript
Monday, 26 December 2011 23:57
The syntax of the window.open method is given below:
open (URL, windowName[, windowFeatures])

URL
The URL of the page to open in the new window. This argument could be blank.

windowName
A name to be given to the new window. The name can be used to refer this window again.

windowFeatures
A string that determines the various window features to be included in the popup window (like status bar, address bar etc)

The following code opens a new browser window with standard features.

window.open ("http://www.javascript-coder.com","mywindow");

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/JCryj253zBY/14353

 
Javascript tweak to open URL either in a new window or new tab based on user's choice
Monday, 14 November 2011 15:20
I am facing an issue where a link on my website opens in a new window if you simply click on it. However, if you right click and say open in new window or new tab, it opens the same window (URL) again from where the link is clicked.

Self Service Option is a link and the JSP calls a function getSelfServSite() when the link is clicked. This is how the code flows in my case

function getSelfServSite()
{
getToTheLink("${myConfigInfo.selfServiceURL}");
// this is because the URL is configurable
}

function getToTheLink(url)
{
window.open (url, "currentWindow", "");
}
What am I doing wrong. I want it to go to the right link no matter how the user click it.

Please advise. Thanks

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/K1W1cwOr4xI/13869

 
Use the New Facebook To See Who Unfriends You [Facebook]
Friday, 23 September 2011 13:10
Facebook Timeline is pretty spectacular, giving a panoramic view of achievements, love, birth, death, and a lot of binge drinking photos. But what else does it provide? A window into social treachery: a list of those who've unfriended you. More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/ofdQ0sbsSu8/use-the-new-facebook-to-see-who-unfriends-you

 
đoạn mã vb script chạy trên win để change key win (.vbs)
Tuesday, 09 August 2011 21:21
đoạn mã vb script chạy trên win để change key win (sử dụng object window manager)


ON ERROR RESUME NEXT

Dim VOL_PROD_KEY

if Wscript.arguments.count<1 then

VOL_PROD_KEY = inputbox("dien vao cdkey")

else

VOL_PROD_KEY = Wscript.arguments.Item(0)



end if

VOL_PROD_KEY = Replace(VOL_PROD_KEY,"-","")

Dim WshShell

Set WshShell = WScript.CreateObject("WScript.Shell")

WshShell.RegDelete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\WPAEvents\OOBETimer" 'delete OOBETimer registry value

for each Obj in GetObject("winmgmts:{impersonationLevel=impersonate}").InstancesOf ("win32_WindowsProductActivation")

result = Obj.SetProductKey (VOL_PROD_KEY)

if err < 0 then

WScript.Echo Err.Description, "0x" & Hex(Err.Number)

Err.Clear

end if

Next

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/2yQ5N_e_83c/13503

 
When Chat Attacks: How To Instant Message Without Wasting Your Day or Being a Jerk [User Manual]
Friday, 05 August 2011 12:30
You're working. A chat window pops open. It's your mom. "How are you today?" Another window fires; your roommate. "Bro, check this video!" Oh, here's one from your boss, he wants to know if you've seen his pen. Goodbye, productivity. More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/bIzzOZMeuQY/when-chat-attacks-how-to-instant-message-without-wasting-your-day-or-being-a-jerk

 
Start
Prev
1


Page 1 of 2
Taxonomy by Zaragoza Online