javascript

Cross Domain Javascript Bookmarklet

Hi Everyone, I've been at this for several days and searches including here haven't give me any solutions yet. I am creating a Bookmarklet which is to interact with a POST API. I've gotten most of it working except the most important part; the sending of data from the iframe (I know horrible! If anyone knows a better solution please le...

What is the difference between these 2 function syntax types

As the title says, whats the difference between MyFunction = function() { } and function MyFunction() { } Nothing? Duplicate: http://stackoverflow.com/questions/336859/javascript-var-functionname-function-vs-function-functionname ...

Unable to load XML data in jqGrid

I am using jqGrid of which I downloaded from here http://www.trirand.com/blog . I followed the tutorial word by word to test out the grid. Now the alterations I did is that the page from which the grid gets the data is in asp.net instead of php. The problem is that the grid loads fine and there is a response with the xml data that I ge...

How to resize a java applet when the browser is resized?

I have a java applet that is embedded in html using the object-comment-embed method. I would like to resize the applet whenever the browser window is resized. I have found solutions around the internet, but they all work based on the deprecated applet tag. Also, when trying a setSize() call on my embed element in FireBug, it will resize...

Determine if aspx page was opened by a window.open() command

Is there a way to determine in the child page's code behind that is was opened by the window.open() javascript command from the parent page? The pop-up page contains a user control that is used by other pages that are not spawned from a window.open() command and I want to dynamically add functionality to close the page after the user ha...

Modifying the window opened by javascript's "window.open()" function

Here's my scenario: I have a page containing several links; each link is meant to open another window containing a pdf. The catch is, I can't have that window directly go to the PDF because I do not want to make it apparent to the end user the PDF is located on another domain, and I need to name the PDF differently than how it would re...

Upload an image with wmd?

Is it possible with the wmd editor to add a button to let the user upload an image to the web server and place the corresponding img markdown in the textbox? If not, will another good inplace editor do it? Context: I'm using asp.net mvc, C# and I am a true beginner with javascript. ...

Removing an item from a select box

How do I remove items from or add items to a select box? I'm running jQuery should that make the task easier. Below is an example select box. <select name="selectBox" id="selectBox"> <option value="option1">option1</option> <option value="option2">option2</option> <option value="option3">option3</option> <option value="o...

Conflict between Drag and drop and sortable jquery plugins

I have a conflict when trying to mix those plugins, i have based my script in some demos. The problem is that when i drag something inside the same list it triggers the drop event and that item is added to the end of the list, wich is correct if the item is dropped in another list, but not in the same, when i drop it in the same list i w...

Detect failure to load contents of an iframe

I can detect when the content of an iframe has loaded using the load event. Unfortunately, for my purposes, there are two problems with this: If there is an error loading the page (404/500, etc), the load event is never fired. If some images or other dependencies failed to load, the load event is fired as usual. Is there some way I c...

Is there a way in javascript to get the names or the count of all open browser windows?

My guess is that the answer is no, but I'm just curious if anyone has any ideas. ...

How many lines of code is in your custom jQuery script on your site? And how much is too much?

For our site, Im using a lot of jQuery - right now Im looking at 340 lines of jQuery code on top of the base library. How much is too much? I will be adding more, when do I start trying to condense the code and eventually move to OOP? ...

Can You Trap These Radio Button Events On Internet Explorer?

Consider this sample code: <div class="containter" id="ControlGroupDiv"> <input onbeforeupdate="alert('bingo 0'); return false;" onclick="alert('click 0');return false;" id="Radio1" type="radio" value="0" name="test" checked="checked" /> <input onbeforeupdate="alert('bingo 1'); return false;" onclick="alert('click 1');return false...

Pretty printing XML with javascript

I have a string that represents a non indented XML that I would like to pretty-print. For example: <root><node/></root> should become: <root> <node/> </root> Syntax highlighting is not a requirement. To tackle the problem I first transform the XML to add carriage returns and white spaces and then use a pre tag to output the XML. ...

Using breakpoints to debug Javascript in IE and VS2008

I am not able to use the breakpoint in Studio with Javascript. I'm able to debug if I use the debugger; I've seen this Breakpoint not hooked up when debugging in VS.Net 2005 question already. I tried the answer and it didn't work. Looking in the Modules window, V.Mvc.Jobtrakt.PDB is loaded properly, but it points to a temp folder ...

Collapsed selection in Opera

Hello, I am not able to get the selection object's start and end offsets in Opera (v9.50) when the selection is collapsed (i.e. just point and click instead of highlighting text). This is my simple test code, which works in FF and Safari but does not work in Opera. <html> <head> <script type="text/javascript"> function showSelect...

Lightbox beyond the browser

Hi, I'm working on a new project, a web application, where I need to focus the user on a particular task. Therefore I want to eliminate all other "System Generated Noise", like Browser Menus, Buttons, Address Bar, OS Task Bar and so forth. I have seen implementations like Lightbox, but this modal approach is limited to the size of the b...

jQuery rollovers using multiple ids and classes

I'm building a photo gallery and what I would like to do is make it so that as the user rolls over an image (let's say for the purposes of this question it's a picture of an apple), all the other images of apples on the page also show their "over" state. Any and all help would be greatly appreciated, and thank you for your time in adva...

Problem: XMLHttpRequest - handle server connection lost

Hi All, How do I handle the scenario where I making a synchronous request to the server using XMLHttpRequest and the server is not available? xmlhttp.open("POST","Page.aspx",false); xmlhttp.send(null); Right now this scenario results into a JavaScript error: "The system cannot locate the resource specified" ...

stop the animation jQ

Hi FOlks, ive got the problem that i dont know how to stop my function with mouseover and restart it with mouseout first here is my test-code: <script type="text/javascript"> function fadeEngine(x) { var total_divs=3; //setze hier die nummer der gewollten divs var y=x; ...