Tagged Questions
JavaScript is a dynamically-typed language commonly used for client-side scripting. Use this tag for questions regarding ECMAScript and its dialects/implementations (excluding ActionScript). Unless a tag for a framework/library is also included, a pure JavaScript answer is expected.
0
votes
0answers
2 views
Ajax Tab Container with Multiple tabs and Same user Control - Populate User Control Dynamically based on tab Clicked
I am using Ajax Tab Container with User controls embedded in each tab.
In my Scenario , I am using the same user control in all the tabs
So, i need to populate the controls under the usercontrol ...
-1
votes
3answers
23 views
taking innerHTML of one div and putting it in another
I dont normally do a lot in javascript but I created a little javascript function to allow me to click the header of an accordian and then show the matching text for that header in the box next to it. ...
0
votes
1answer
18 views
How to listen to a jQuery trigger in legacy js
I'm triggering an event with jquery and I need to bind to it in a non jQuery script.
It seems that I can bind to the event in jQuery with on but not with addEventListener.
Here is a jsFiddle showing ...
0
votes
1answer
23 views
JS function clear my form variables values
I wrote simple form with one text and one checkbox. Next i wrote function that run onsubmit form. When I submit form with onsubmit function text and checkbox values clear (text send only name of ...
0
votes
0answers
5 views
Android: Playing html videos in full screen
I am loading a HTML page on to a webview, which has a list of videos.
Now when I try to play the videos, they are playing but I am unable to make them play in full screen. I have used the below code ...
0
votes
0answers
4 views
Switching data models in AngularJS for dynamic select menus
What I am trying to do is have three different <select> menus which will be all be tied into the same data. Changing the first select menu, will change menus 2 and 3's data.
This is the inside ...
-2
votes
0answers
11 views
How do I create a video with javascript
I have a canvas with some graphics. I would like to execute a function after draw() that will save the image, and then at the end download the finished video. I have found ONE script that does that, ...
0
votes
0answers
12 views
overriding parent contentEditable with javascript
I have some div like this:
<div id="op" contentEditable="true">hello<div class="dynamic">......sth
</div> <div class="dynamic"> ...sth
</div> .......<div ...
0
votes
1answer
22 views
How can I prevent the infinite loop that often results from two synchronized events?
I have a text area that I am synchronizing with the GoInstant platform. here is what the code looks like:
var myRoom = platform.room('myRoom');
var myKey = myRoom('myKey');
// Listen to set events ...
0
votes
0answers
21 views
My app crashes with a java.lang.IllegalArgumentException
I get a crash report every few weeks about a java.lang.IllegalArgumentException and I really don't know where to start looking. I have never had the app crash while testing it as far as I can tell the ...
-1
votes
0answers
9 views
running web application through phantomjs
I have j2ee web application running on tomcat. and it does some sort of task. for example i have defined a window.open() event whenever it gets new set of data.
i want to run my application through ...
2
votes
2answers
25 views
Knockout binding for toggle switch
I need to bind jquery toggle switch with knockout observables , please help me with correct approach as mine is not working
My html file looks like :
HTML:
<select name="toggleswitch1" ...
-1
votes
0answers
22 views
Editing the table using ajax
How can i edit my table in database using Ajax? I have already stored some data in Data Base.Actually i kept Roll no as a search option, I have Entered some concern person roll number and now I am ...
0
votes
0answers
18 views
ASP.NET Razor: add to Model moved List box items from another list box
I have 2 list boxes like below:
@Html.ListBox("SelectedList",(IEnumerable<SelectListItem>)ViewBag.SelectedList, new { @class="listbox" , id="list2" })
<input id="btnAdd" type="Button" ...
-1
votes
0answers
24 views
Please provide the execution steps while loading the page for the below scenarios
Here I'm planning to check condition globally and should execute some functions and the same function is calling from other js files ().
Please check with this below code
First scenario:
call.js
...