Questions tagged as 'javascript'

1
answer

Manipulating links with accents

I am capturing news links posted to a particular site using the following code: function academia(){ function makeNews(res){ var soup = $(res.responseText).find('div [class~="tileImage"] h2');...
asked by 22.07.2014 / 16:57
2
answers

Request Method Changing from GET to OPTIONS alone

I have the following code: $(function() { $('#method').change(function() { var method = $(this).val(); if (method == 'GET' || method == 'DELETE') $('#json-group').hide(); else $('#json-group'...
asked by 13.06.2014 / 22:04
0
answers

Plugin javascript or jquery estrelinhas [closed]

Note:    I do not know if you can ask this question here, if not! Please disregard / delete. Does anyone know of a plugin that I can do this screen (the rating): WherethisratingI'mtryingtodo,Ifoundthis plugin and I'm reading his doc...
asked by 04.09.2014 / 21:41
3
answers

Writing and reading file via JavaScript

Is it possible (if so how) to do the following method with JavaScript? The person types in a form some arguments, When you click send it will execute a JavaScript code, In this code the function will get the form information and will ope...
asked by 03.03.2014 / 23:18
1
answer

Use EJS with NODE

I need help to change my html index to EJS. I'm using Node, and I've already made the changes in my configuration file for EJS to work properly. In my index.ejs I have a table tr: <div class="container"> <div class="starter-temp...
asked by 02.09.2014 / 23:53
0
answers

Problem with javascript and html in intellij project

I created the index.js file which is composed of the javascript code below: $(document).ready(function() { $("#menu").accordion({collapsible: true, active: false}); }); and I put it together with jquery-2.1.1.min.js inside the...
asked by 22.11.2014 / 03:49
1
answer

Textarea unicode problem in IE8 and MVC2

I'm having trouble in a textarea field. I have a field textarea the client type in this field inserts ç ã àèìáéí, in the perfect textarea, in js it is also ok, but when I retrieve in the controller the textarea field, This only happens with...
asked by 21.11.2014 / 12:24
0
answers

Customize the CKEditor taskbar (Java version) [closed]

I'm using the lib integration of CKEditor with JSF (ck-jsf-editor-0.9.4.jar) and is working correctly, but the toolbar is appearing is aa standard and I would like to set this up. Would anyone know how to do it? I tried to change the file...
asked by 27.05.2014 / 13:27
0
answers

Kendo UI Grid in an AngularJS Directive

How to create a Kendo-grid with reusable options using AngularJS? In addition to the default settings, the grid must dynamically include a checkbox column with the option to select all rows. Methods to handle selections should be part...
asked by 01.05.2014 / 21:08
1
answer

Error in render: "TypeError: Can not read property 'phone' of undefined"

I'm using Vue.js and I came across the title error. I have an array object: students[ contact: { mobile: null, phone: null } ], The contact array is not always populated. How do I n...
asked by 14.08.2018 / 15:59