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
Check video is playing on not using jwplayer
I am using jwplayer for playing video
temp=1
jwplayer("container").setup({
flashplayer: "<?php echo $this->getSkinUrl('video/mediaplayer/jwplayer.flash.swf') ?>",
autostart: true,
...
0
votes
0answers
5 views
Update repeater when a record is added to database
I have a repeater which shows some detail from database. I want when a new row is added in database the repeater should also update dynamically.I done this by placing repeater in update panel and ...
0
votes
0answers
5 views
Reading Web.Config value through CSS
I know that we can read the value from Web.config file through javascript.
For example,
I can read the value of "var1" by using javascript.
Can I read this value by using "CSS". Is there any ...
0
votes
0answers
2 views
Angularjs Make drop down disabled when pressing checkbox inside ng-repeat
I'm trying to display on screen html controls using Meta-Data stored in json file.
Also I'm trying to create a state where pressing check box that will make a drop down disabled.
I was managed to ...
0
votes
0answers
7 views
Javascript onload event function is working only on server restart
have written a function in javascript which will be fired on page load.
the function works fine first time.
but if I come back to index page after visiting other page it do not work properly.
It do ...
0
votes
1answer
15 views
Password Protect Page
It works but only works after second time password is entered..? When you enter password it says wrong password so you enter it again and then it goes thru..?
Needing script fixed please beginner ...
0
votes
0answers
5 views
Plugin for sharing- phonegap
Iam doing a phonegap project, now i need a plugin to share data from my app (sharing to facebook,linkedin,google+, etc) ,
i found addthis - but it is not working in my mobile project, actually iam ...
0
votes
1answer
19 views
Better alternative to jQuery accordion for long lists
I have a long list of items each of which can be expanded and show additional content.
I tried to use accordeon from jQuery UI package, but it seems very buggy when it comes to long lists. Are there ...
1
vote
0answers
25 views
my images will not loaded properly in my images folder
i am writing an web crawler that will extract title description and images from url ..i want to save images in images folder in my project that is save correctly but images does not loaded completely ...
1
vote
1answer
10 views
What are the obvious vulnerabilities to using a session identifier cookie and a user_id cleartext cookie?
My basic setup is a ruby/rails server serving a JSON-based api endpoint and a bunch of javascript running an ember.js single-page application.
In order to access "sensitive" (defined how you want to) ...
0
votes
0answers
11 views
Cannot find keyframe css rule on ipad webview
css
@-webkit-keyframes "scroll" {
0% {
transform: translateY(0px);
-webkit-transform: translateY(0px);
}
55% {
transform: translateY(0px);
...
0
votes
0answers
8 views
Save Google Maps Markers onClick To Database
I want your guys' help on this. I wrote the code for allowing users to create markers(with infowindow) with a 'click' function that will save the lat/lan and other info to a MySQL database that will ...
0
votes
1answer
27 views
how to get the previous url when user click on back button in browser
I am using asp.net.
I have a main menu.
what I have done is,I have a main menu.
In the Home/About page,when user click on the menu I replacing the About page content by selected page content selected ...
-2
votes
4answers
34 views
Cannot push values with keys in an array using jQuery
I am trying to push some values with keys to a array and I want to fetch the details with keys to show theme in the alert message;
Here is my code which I tried
Jsfiddle
Html
<table>
...
-2
votes
0answers
11 views
including Mobile Jquery of different versions for different functionality on same page
There is a web application which is using mobile-jquery v1.0 . Now, I have to incorporate the autocomplete functionality which is in mobile-jquery v1.3. So in order to do that when I have included ...