javascript

Clean Javascript Info Popup

I'm just trying to figure out exactly what kind of script this is, and where I can find more info on implementing it. Not sure exactly what to call it. If you click on one of the speakers here, you can see it in action: http://www.howconference.com/speakers/ ...

Multi-Array of XML Requests

OMG, I am in need of a way to set up arrays of XML Requests based on the idShout - 1. So it would be something like this... var req = new Array(); req[idShout - 1] = ALL XML Data... Here's what I got so far but it's not working at all :( var idShout; var req = new Array(); function htmlRequest(url, params, method) { req[req.pus...

Is there a tool to allow the use of Android's 9-patches in Javascript?

I'd like a Javascript library that will stretch/scale 9-patch images correctly. Know of one? ...

PHP <-> JavaScript communication: Am I stuck with ASCII?

Hello, I am passing a lot of data between PHP and JavaScript. I am using JSON and json_encode in php, but the problem here is that I am passing a lot of numbers stored as strings - for example, numbers like 1.2345. Is there a way to pass the data directly as numbers (floats, integers) and not have to convert it to ASCII and then back?...

jquery stop image rotation on mouseover, start on mouseout / hover

I have built a jQuery rotator to rotate through 3 divs and loop them. I would like to add the functionality on mouse over to "freeze" the current div and then start again on mouse out. I've thought about setting a variable to false at the start of the function and setting it true when it's on it's current frame but I've got my self a...

Making an Ajax request to a page method in ASP.NET MVC 2

I'm trying to call a page method belonging to a MVC Controller from another site, by means of: $.ajax({ type: "GET", url: "http://localhost:54953/Home/ola", data: "", contentType: "application/json; charset=utf-8", dataType: "json", success: function(data) { con...

Hide Dynamically Added Columns/Fields

I have some dynamically created rows/columns. What I'd like to do is set a section of it (txtOffsetID) to be hidden. I tried this: txtOffsetID.setAttribute('type', 'hidden'); but it didn't work. I want to hide that entire column and any new columns added. I need it to work in IE. Thanks. Sample code: function addNewOffsetItem() ...

Adding Value into an Input Field

Hey, I am working on an iPhone Web App using HTML & CSS. I have currently got the JavaScript/HTML5 Geolocation picking up my current location and showing me it on a Google Map using Lat & Long values. I also want to add these Lat & Long Values into the 'address' text field on the page so I can submit the details. Here is the link: http...

Fade HTML element with raw javascript

It's my second question of the day related to the same problem, so I apologize for that. I was able to put together a function to "fade out" an element, and it works just fine, my problem is that when I try to reverse it, so the element "fades in" it does not work. I've tried to change the obvious, but I can't understand what I'm doing ...

Javascript Associative Arrays

Hello all, It seems to me that this should work but I cant see what exactly is the problem. The error Im receiving is "DDROA is not defined" Could anyone help enlighten me. var DDROA = { AllowedRoutes : { AR0 : {text : 'SomeText', value : 'SomeValue'}, AR1 : {text : 'SomeText2', value : 'SomeValue2'} }, ...

How to make jQuery UI sortable divs dragged only from an icon?

Hi, I've used some jQuery UI sortable plugins but i always found the same problem, i can't select or click inside the sortable DIVs, So, maybe i can find the solution by putting an icon from where you only can drag the div so you can be able to select the other part. How to do that? Thanks ...

What is a prototype chain in regards to JSON?

Hi all, I'm newer to Javascript, and I was wondering what exactly a "prototype chain" is in regards to Javascript Object Notation? What would I use it for? EDIT: New Question: What are prototypes in Javascript? Thanks! ...

Javacsript in PHP code

Hi all, I found this code on the internet on how to to display message/pop up box. <? echo "<script language=\"JavaScript\">\n"; echo "alert('$msg1')"; echo "alert('$msg2')"; </script>"; ?> AND <? echo "<script>alert('$msg1' )</script>" <? I want to display messages to the user by popup message. all the messages will ...

How to make tinymce paste in plain text by default

Googled it thousands of times, No one gives a complete solution of how to make Tinymce paste in plain text by default and strip out any formatting without clicking the "paste as text" button. Any Ideas of how to implement that? or how to enable the "paste as text" button automatically? Thank you ...

JavaScript: What is addEventListener?

What is this function? Didn't really find any good examples. ...

Working with arrays passed byref

I would like for someone to explain this to me: function myFunction(array){ array = $.grep(array, function(n,i){return n > 1 }); } var mainArray = [1,2,3]; myFunction(mainArray); document.write(mainArray) // 1,2,3, but i'm expecting 2,3 but if i do something like array[3] = 4; in place of the $.grep line, i get 1,2,3,4. ...

How to generate msdn documentation from javascript? preferably using sandcastle

hi is there a tool that i can use to generated msdn type documentation? i recently just started playing with sandcastle and i found that there used to a tool called scriptdoc but it has been absorbed into aptana and i don't really want to use aptana studio. what i could find so far is jsdoc which is a perl script which extracts comment...

phpbb specific forum page styles

I am using phpbb on a site for a client, and the client has requested that each different forum page have a different background color. Such functionality is not built into phpbb (from what I can tell), so how should I go about doing this? Can I modify the code of phpbb directly? My other thought was to use a js conditional statement, ...

Retrieving data from enumerated JSON sub arrays in Javascript without getJSON

I'm new to JSON and ajax, but i'm trying to access data in an array where the items are enumerated in a sub array within another sub array. I run into problems with I try to access something like data.items[0].details.specs[1].name data.items[0].details.specs[1].id data.items[0].details.specs[2].name data.items[0].details.specs[2].id et...

Can I use "map" as a substitute for "for each"/"for in"?

For a little while now javascript has the "map" function to loop over arrays. It appears possible to use it as a 'foreach' operator for example: fruitbowl.map(function(fruit){ ... do stuff with fruit }) Is this better or worse than saying for(var i in fruitbowl){ ... do stuff with fruitbowl[i]...