Prototype is a JavaScript Framework that aims to ease development of dynamic web applications.

learn more… | top users | synonyms (1)

0
votes
0answers
20 views

Prototype Cannot call method 'get' of undefined

The Chrome console is giving me this error: Uncaught TypeError: Cannot call method 'get' of undefined I search that line and found this: function _createResponder(element, eventName, handler) { ...
0
votes
1answer
42 views

Prototype.js Issue

Protype.js is throwing a peculiar error : typeerror value does not implement interface node And it showsthis line in the fire bug console as the culprit behind : var query= ...
3
votes
0answers
26 views

Object Oriented Programming in JavaScript. Is there life without it? [migrated]

At our company we have pretty large body of PrototypeJS based JavaScript code, which we are porting to jQuery for several reasons (not really important here). I'm trying to set up coding guidelines to ...
1
vote
3answers
51 views

jQuery and Prototype methods interfering with each other

I'm working on a legacy project (before Rails 3.1) which has been around for years, so it has Prototype and jQuery all over the place with the general idea to rewrite all the Prototype in jQuery. I'm ...
0
votes
0answers
6 views

Install safari extension from within browser (like on the apple site)

On the apple extensions site you can install a safari extension by clicking on the install button. It does it all in the browser without downloading to the finder. https://extensions.apple.com/ Is it ...
1
vote
3answers
41 views

dynamic max-height with js in firefox

I cannot alter the max-height value of a div in javascript. Can anyone give me any hints. It works in chrome, safari, and IE but not in firefox. Is there any way to get it to work in FF? ...
1
vote
1answer
26 views

passing dynamic parameters in script.aculo.us

I want to pass dynamic values inside parameters of script.aculo.us for auto suggestion in my jsp page Below is my code where i want to get the value of checkbox and pass it to server. But in server ...
0
votes
4answers
47 views

element.next() not working in IE8

I have one function in that below are few lines: if(ele.next()) { if(ele.next().className == 'errmark') ele.next().remove(); } Now this is working ...
1
vote
2answers
46 views

PHP interaction with AJAX

So I have this function in my javascript file: function UpdateThisCourseHistory(){ var ajax= new Ajax.Request("runNeededQueries.php", { method: "POST", ...
1
vote
0answers
34 views

this.toPaddedString is not a function prototype

I get this error when using jQuery and prototype together. I wrote custom javascript for a shipping calculation module in magento and am unable to solve this error in firebug console. Anyone who knows ...
1
vote
0answers
27 views

Getting trouble with jQuery tabs in loading openlayers map

I've four jQuery tabs, in second tab I'm showing map using the openlayers library then I'm getting following errors Uncaught TypeError: Cannot call method 'clone' of null // onload error Uncaught ...
1
vote
1answer
57 views

Passing array elements in javascript as parameters for an AJAX POST request

I've taken some input values from the user and I want to post these values as arguments in my AJAX request so I can add an entry to a database in PHP: My function in JS is: function reqAdd() { ...
0
votes
0answers
14 views

Prototype JS and Imagemapster conflict

I've been working with Imagemapster for about a week and it's been getting the job done. I added Prototype JS this morning and all of my image treatments went away. If your aren't familiar with ...
1
vote
1answer
38 views

I'm using prototype.js to pass POST content to a php script but FILE POST doesn't go

I'm using this script to pass my POST contents : <script type="text/javascript"> // <![CDATA[ document.observe('dom:loaded', function() { function sendForm(event){ // we ...
0
votes
2answers
27 views

Find unknown image dimension in jQuery and PrototypeJS

I want to find out dimension of this image in px. In jQuery var h = $("img").height(); var w = $("img").width(); alert(h +"px", w +"px"); In PrototypeJS var h = $('img').getHeight(); var w = ...
2
votes
2answers
84 views

HTML5 FullScreen API toggle with JavaScript

I am trying to make a button that would toggle (on/off) HTML5 fullscreen on a certain website. After reading plenty of documentation, it appears there still are some inconsistencies among how ...
0
votes
1answer
29 views

How to implement this nested linked_to_function?

In my view I want the user to be able to browse a catalog of products. The hierarchy is as following: Category Product AdditionalInfoForm In my main view I render a partial for the ...
1
vote
2answers
70 views

Hide element (li) that contains “some string”?

I want to hide one <li> element of many which contains (inner HTML) the string "whatever". Is there way to do that without knowing the exact structure of the innerHTML of the <li>s? I ...
1
vote
1answer
22 views

jQuery.clone() & keep Prototype.js event observer applied via Event.observe()

I am integrating an external library into a project of mine. Unfortunately this external library uses Prototype, while my project depends on jQuery. I have this working except for the following ...
1
vote
1answer
41 views

Rails 3 - Some Required JS Not Being Found

I moved a Rails 2.2.2 site to Rails 3 and have been fixing it as I go. I am now onto the JS portion of the site and I am seeing the following when I hit a page that includes JS: Could this be a ...
1
vote
2answers
90 views

How to remove selected options from multiple select box with Javascript Prototype?

I have searched quite a bit for the answer to this question, but no satisfactory result found. I have this code: <select name="items[]" size="0" id="feed-items-list" style="width:100%;" ...
0
votes
0answers
52 views

Getting Protoype Error in Magento Checkout Onepage

I have read and searched through site about the prototype error I am getting during checkout on our site. What is happening is that when onepage goes to the shipping methods part the display is ...
-1
votes
0answers
37 views

prototype.lite.js conflicts with jquery

The code below is suppose to run using moo.ajax, moo.ajax is dependent on prototype.lite.js which conflicts with other scripts written to run using jquery 1.7. My question is how do I rewrite this ...
0
votes
1answer
47 views

Remove exact text using prototype

I have this circumstance: name.update(name.innerHTML + "<br /><div id='clearselection' style='color:red;padding-left:5px;font-size:11px;'>[ Clear Selection ]</div>"); and I need ...
1
vote
1answer
41 views

Setting a minimum height of a container on page load prototype

Ok, so I am trying to set the minimum height of a container dynamically on page load using prototype so that the page displays correctly. My header and footer equal 345px in height, so I am trying to ...
4
votes
1answer
94 views

In Javascript, are deferred functions executed in order?

There is a possibility that my code can defer two or more functions in short succession. Can I guarantee that each deferred function will execute in the order in which I created them? For my web ...
0
votes
0answers
53 views

Foreach javascript conflict with prototype.js

Foreach returns an odd function if I try to include prototype.js, if not I include the script works correctly. The following the wrong output with prototype: function each(iterator, context) { ...
0
votes
0answers
19 views

Remove Item in onePageCheckout with prototype.js

I want to remove a magento cart Item with ajax using prototype.js is there any possible solution. I am getting Item id's to be removed like 166,167.. here is my code. var id_to_remove = pid_s[lm]; ...
3
votes
3answers
95 views

default values for nested javascript hashes

In JavaScript I want to do the following: var pi = {}; pi[0]['*']['*'] = 1; of course this throws a "Cannot read property '*' of undefined" error. Clearly I can define p[0] = {}, but that's kind ...
0
votes
0answers
56 views

Magento Admin: On customer edit page getting javaScript error alert

In Magento admin panel, when I go to Customers->Manage Customers page and then edit some customer I am getting a javaScript alert. Please check image that I have attached For temporary solution I ...
-1
votes
1answer
79 views

prototype.js and some other js's conflicts

I don't know much things about javascript and i don't have any friends that knows javascript :( that's why im asking stackoverflow community again for help. I've got a new template for my script but ...
0
votes
2answers
96 views

class vs addClassName jscript

what is the difference, in using class vs addClassName jscript? in a for loop, whenever I was adding a class to the existing class, then after each loop cycle it was adding new class to it. So ...
2
votes
1answer
31 views

Prototype JS: Selecting an element by its value?

I have an input type radio with a unique value. Is it possible to select that radio button by its unique value (147178) using Prototype JS? Thats the radio button: <input type="radio" class="radio ...
0
votes
2answers
48 views

Magento: blank tab content in Manage Categories

Why do I get a blank tab content area on Magento's Category edit form? Background In Magento, I've added an input_renderer to a custom category attribute that produces a drop-down menu (select). ...
1
vote
1answer
109 views

Add a character count to admin inputs and textareas

I'd like to add a character count to every input and text area in the product details page in my Magento store admin. I'm used to jQuery but would rather use the default Prototype library for this ...
0
votes
2answers
73 views

JavaScript works fine in any browser but Firefox?

Ok this is my JavaScript <script type="text/javascript" language="JavaScript"> function manageCart(task,item) { var url = 'managecart.php'; var params = 'task=' + task + '&item=' + item; ...
4
votes
1answer
33 views

How to set multiple values for a key in a hash in prototype.js?

How to set multiple values for a key in a hash in prototype.js? For Eg: var hash={2005: [107, 31, 635, 203, 2]}
0
votes
1answer
54 views

Floating table headers when container has overflow?

I'm using position:fixed to float some headers in my table when the user scrolls past the top, ala this method: http://css-tricks.com/persistent-headers/ Everything works great on regular pages, but ...
0
votes
0answers
125 views

Converting Prototype onclick to jQuery for PHP dynamic echo based on form input

I had a solution working great on a Prototype/Scriptaculous-based form and PHP script, but have since started using jQuery so now the JS function no longer works for what I need it to do. My friend ...
3
votes
1answer
51 views

Changing local scope variables in debuggers

I've been stepping through some JavaScript code (in this case, Prototype's AJAX library) to catch a glimpse of the responseText. I've read that in Firebug and IE Developer Tools you can modify ...
0
votes
1answer
103 views

Prototype.js Test If Element Has Focus

So I abandoned prototype.js years and years and years ago for jquery LOL... Now I find myself having to use it again and can't quit figure out how to get this jquery statement out of prototype.js ... ...
0
votes
1answer
166 views

Javascript Array / jQuery .data()

I've an attached data which contain an ID list used like this : //Create $('#element').data('list', new Array()); //Add a value into data $('#element').data('list').push(id); //Remove an element var ...
0
votes
2answers
55 views

rails observe_form and prototype: return '$A($(form).getElementsByTagName('*'))'

I have observe_form in my view: <%= observe_form 'new_lead', :url => { :action => 'update_price' }, :frequency => 0.1 %> , _update_price.rjs partial and this method in controller: def ...
0
votes
3answers
58 views

What is the equivalent of prototype .any in Jquery?

We have one function called .any in Prototype. I want the same like in Jquery. My Prototype code is: if (item_name == '' || $R(1,ind).any(function(i){return($F("bill_details_"+i+"_narration") == ...
2
votes
1answer
29 views

How to generate the following json data using prototype.js?

How to generate the following json data using prototype.js? var testData=[{ name: 'Year 1800', data: [107, 31, 635, 203, 2] }, { name: ...
0
votes
1answer
49 views

Prototype Ajax.Updater evaluate string before the update

here's my code: new Ajax.Updater('container', url, { method: "get", onLoading: function () { document.getElementById('container').innerHTML = "Loading..."; }, on200: ...
1
vote
1answer
27 views

prototype and dom not delivering expected result

I'm trying to update (replace content) of a table cell based on returned JSON. if I render my results in my loop using console.log - I get the correct/expected result. however when I add the DOM ...
4
votes
1answer
42 views

Can anybody tell how to parse json data using prototype.js and iterate through it?

I have json array like var data = '[{ "name": "Violet", "occupation": "character" },{ "name": "orange", "occupation": "color" }]' How to parse the the data and iterate through it using ...
2
votes
1answer
575 views

SCRIPT1010: Expected identifier in IE10

In my project I am using the Prototype JavaScript Framework 1.7.1 When I load the web page in IE10 on Windows 7 I get the error message below: SCRIPT1010: Expected identifier line 1 character 9 which ...
0
votes
1answer
31 views

convert prototype script to jquery script

bottom code convert digit in text input to Farsi language digit and mirror . I need convert prototype to jquery,please help me String.prototype.toFaDigit = function() { return ...

1 2 3 4 5 45