Unnamed: 0
int64
302
6.03M
Id
int64
303
6.03M
Title
stringlengths
12
149
input
stringlengths
25
3.08k
output
stringclasses
181 values
Tag_Number
stringclasses
181 values
4,831,407
4,831,408
Possible to generate sequential numbers without database table?
<p>I'm writing a simple web form for a client in ASP.NET. The form sends an e-mail when submitted. One of the requirements is that each e-mail should have a sequential ticket number.</p> <p>The two options I've come up with for accomplishing this involve writing the last number to a database, then selecting it out and...
c# asp.net
[0, 9]
312,652
312,653
unable to use integer string as pixel value?
<p>In the code below, I'm trying to get the string <code>(40*(parseInt($('#2-cat').attr('id')))+1)</code> to be the pixel height for moving a div. But it is just not working, and I don't really see why - I've put in two other test lines of code, and the server seems to accept that this string is an integer... but it do...
javascript jquery
[3, 5]
2,593,782
2,593,783
query action with php
<p>I have a command that get data in mysql with php and have the follow command to remove a div (can have multiples removes):</p> <pre><code>echo "&lt;div id='".$experience['index_of_form']."'&gt;"; echo "&lt;a href='#remove' id='remove' name='".$experience['index_of_form']."' style='text-align: right; text-decoration...
php jquery
[2, 5]
3,114,242
3,114,243
How to pass javascript var to server side on asp.net
<p>I'm trying to pass a textarea value to the server side. The textarea cant be runat=server though. heres my code:</p> <pre><code>&lt;script type="text/javascript"&gt; function replace() { //Replace &lt; and &gt; on textarea var obj = document.getElementById('recipient_list'); ...
javascript asp.net
[3, 9]
163,141
163,142
How to compare the attribue value
<p>Is it possible to compare the attribute value in jQuery?</p> <p>example </p> <pre><code>if( $(this).[ attribute value ] == "0") {} else {} </code></pre>
javascript jquery
[3, 5]
1,327,265
1,327,266
Jquery function to javascript function
<p>I have functlion which is working perfactly. Now the client’s requirement is that he doesn’t want to use any other file for js, so I have change this function to be pure JavaScript, i.e. without jQuery. I am confused where to start.</p> <p>Can you guys tell me a JavaScript function similar to jQuery’s <code>.size</...
javascript jquery
[3, 5]
4,211,659
4,211,660
Load file once into an ASP.NET application
<p>I'm working on a web based app which in the core is an expert system, and I need to load the rules file to the app only once .. so I need an equivalent to public <code>static void main() {}</code> in ASP.NET site to load the file in it .. what is this equivalent and is it exist .. any suggestions are highly welcome ...
c# asp.net
[0, 9]
4,650,690
4,650,691
Jquery Collapsible panel - post back issue
<p>I need some modification in the script but could not do it as i am not so friendly with jquery</p> <p>When the page postback i want to maintain the state of the panels. Right now if i refresh the page all the panels are collapsed,</p> <p>i am using the below code </p> <pre><code>$(document).ready(function() { ...
jquery asp.net
[5, 9]
1,263,349
1,263,350
How to find control in formview item template
<p><em>I have tried this -</em></p> <pre><code>if (FormView1.CurrentMode == FormViewMode.ReadOnly) { DropDownList ddlexpense = (DropDownList)FormView1.Row.FindControl("ddle"); } </code></pre> <p>on FormView1 DataBound ,Init,ItemCreated and a seperate Function ,but i always get the same error - System.NullReferenceE...
c# asp.net
[0, 9]
5,409,149
5,409,150
Why my 'else' do not work?
<blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/2076988/why-does-id-return-true-if-id-doesnt-exist">Why does $(‘#id’) return true if id doesn’t exist?</a> </p> </blockquote> <p>I have a very simple js function:</p> <pre><code>function refresh(ltr) { if (...
javascript jquery
[3, 5]
2,893,155
2,893,156
Using .attr() with .get() Issues
<p>I am trying to store an array of objects in an array by going through each paragraph element in a <code>div</code> container with the .<code>get()</code> method. I try to access the attribute with .<code>attr()</code> but it doesn't seem to work. How would I modify this code in order to be able to access the 'id' ...
javascript jquery
[3, 5]
4,576,691
4,576,692
Android Toast.makeText() not showing up
<p>When the user presses a button, I'd like a small <code>Toast.makeText()</code> message show up saying something like <code>Contacting server...</code> while the app gets some information from my web server.</p> <p>The problem is that Java's HttpClient.Execute() method is synchronous, so it blocks the Toast from sho...
java android
[1, 4]
1,762,431
1,762,432
Nice, subtle, temporary highlighting technique using jQuery
<p>I'm looking for a technique that isn't obnoxious like most that I've seen, that will temporarily raise attention to a small notification passage.</p> <p>I've been clunking around with adding and taking away classes and wrapper divs, without much success thus far.</p> <p>Suggestions appreciated.</p>
javascript jquery
[3, 5]
3,926,251
3,926,252
text from divs into array for sorting
<p>I'm trying to get all the text of a particular class into an array. </p> <p>The below works theoretically, but it puts them into an object, not an array, and .map apparently is widely unsupported in most versions of IE :(</p> <pre><code>var valuesArr = $('.'+sort_column); var valuesArr = valuesArr.map(function(){...
javascript jquery
[3, 5]
2,983,693
2,983,694
Trigger div on pageload
<p>I have been trying to set the scroll of my page to a certain div. Kindly let me know how can i do that. Following is my code in which each each option in li moves to certain div . I tried this $("#header3").click(); in doucument.ready function but it didnot work.</p> <p>Kindly help!</p> <pre><code>&lt;ul i...
javascript jquery
[3, 5]
895,417
895,418
use jquery to modify class attribute
<pre><code>&lt;ul&gt; &lt;li&gt;&lt;a class="selected"&gt;A&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a&gt;B&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a&gt;C&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>How can I remove the attribute selected from all <code>&lt;li&gt;'s</code> when one of the element is clicked and set the one...
javascript jquery
[3, 5]
5,372,119
5,372,120
Disable button inside a GridView TemplateField
<p>I have the following gridview control </p> <pre><code>&lt;asp:Panel runat="server" ID="pnlBeforeSave" Visible="true"&gt; &lt;asp:GridView ID="gvP" runat="server" AutoGenerateColumns="false" AllowPaging="false" AllowSorting="false" CssClass="list-table" HeaderStyle-CssClass="header"&gt; &lt;Columns&gt; &lt;as...
c# asp.net
[0, 9]
188,466
188,467
Confirm function in codebehind
<p>I my application i am using ajax(Updatepanel).I am using the following code to show confirmation dialog box after finishing some update process in database. but it is not working for me.</p> <p>Problem:</p> <p>Confirmation box is not displaying.</p> <p>code:</p> <pre><code> protected void imbtnUpdate_Click(objec...
c# asp.net javascript
[0, 9, 3]
2,621,687
2,621,688
use javascript to test if server is reachable
<p>I have a javascript application that loads data asynchronously from a server within my company's firewall. We sometimes need to show this application outside of the firewall but it is not always possible to get on the VPN. For this reason, we configured the firewall to allow public requests for this data on a spec...
javascript jquery
[3, 5]
5,084,929
5,084,930
Connecting App with PHP and mysql
<p>I am trying to access a database through a simple PHP code. But the constraints are that it is a remote database, accessed by a remote server from a real device.</p> <p>here is a snippet of the code:-</p> <pre><code>ArrayList&lt;NameValuePair&gt; postParameters = new ArrayList&lt;NameValuePair&gt;(); p...
php android
[2, 4]
1,531,663
1,531,664
jquery and javascript conflict
<p>I am using jquery in the master page and javascript in the content page. When Jquery is used alone it works fine. But when I use the javascript(content page) along with jquery(master page) then jquery in master page stops working.</p> <p><strong>master page script</strong></p> <pre><code>$(document).ready(function...
javascript jquery
[3, 5]
3,636,003
3,636,004
Run a JavaScript function from a php if statement
<p>I am using php conditions and want to know if I can run a JavaScript funtion without some one have to click on it using JavaScript: </p> <pre><code>if($value == 1) { javascript to run the function } </code></pre> <p>How would I do that?</p>
php javascript
[2, 3]
1,210,305
1,210,306
how can i show string one activity to another activity on a 9*9 sudoku grid?
<p>i want to show string one activity to another activity another activity is the sudoku game class and want to show the string like a sudoku puzzle on the sudoku screen board on the sudoku game class.sudoku grid is 9*9.</p>
java android
[1, 4]
264,641
264,642
Derived Custom Control to Inherit Base Control Skin
<p>Is it possible for a derived controls to inherit his base control skin.</p> <p>Say I am deriving a control from TextBox, is it possible for the derived control to inherit the skin settings for Textbox or do they need to be defined again?</p> <p>I am applying the default skins to all controls through the styleSheet...
c# asp.net
[0, 9]
2,288,074
2,288,075
Class calling in android development
<p>i'm new to android development, how can i call a class to be performed when my application starts. Is there something i should put on the onCreate part to call a class? any tips for this? thanks in advance.</p>
java android
[1, 4]
5,969,840
5,969,841
Dropdownlist onselectedindexchanged problem
<p>I have a dropdownlist like this</p> <pre><code>&lt;asp:dropdownlist runat="server" autopostback="true" onselecteditemindexchanged="fire_event" ID="DDL"/&gt; </code></pre> <p>and on codebehind i m doing this</p> <pre><code>page_load : if(!page.postback)I m binding data into dropdownlist fire_event: I am redirec...
c# asp.net
[0, 9]
1,425,980
1,425,981
JQuery .get function vars
<p>Once again having problems being a new to javascript. I want to get the reply from my PHP script using JQuery's get. Here's my function</p> <pre><code>function getNext(){ var returnData = null; $.get("get.php", {task:'next'}, function(responseText){ returnData = responseText; }, "text"); retur...
javascript jquery
[3, 5]
425,398
425,399
Unsuccessfully calling a function defined in JS file 2 from a function in JS file 1 AFTER the page has loaded/on-click event
<p>I have two Javascript files, that I will significantly streamline to simplify the issue in hand.</p> <p><code>form.js</code></p> <pre><code>function open_action_dialog(){ // code to open the dialog.. // If [Return] is pressed when focus is on the #action field, call the action confirmation function defined ...
javascript jquery
[3, 5]
5,066,333
5,066,334
How to retrieve a variable of php file with using java?
<p>I am triying to get a variable from php file with using java code. How can I do that? Thank u all...</p>
java php
[1, 2]
2,602,901
2,602,902
call to a function that changes picture every 2 seconds
<p>i have a picture and i want to change it every 2 seconds when my mouse is on it. so i write:</p> <pre><code>$("#profilePic").mouseover(function() { var t = setTimeout("pictureChanger()",2000); }); </code></pre> <p>and this is the function:</p> <pre><code>function pictureChanger() { currentPicture++; c...
javascript jquery
[3, 5]
244,280
244,281
Setting a max height onResize
<p>I have a script that uses this function to resize images onLoad and onResize:</p> <pre><code>/** * Calculates the display width of an image depending on its display height when it is resized. * @param displayHeight the resized height of the image * @param originalHeight the original height of the image * @param...
php javascript jquery
[2, 3, 5]
1,059,263
1,059,264
subtype and covariant return type
<p>I found an explanation <a href="http://stackoverflow.com/questions/1882584/what-is-a-covariant-return-type">What is a covariant return type?</a> but I am no smart to understand it all.</p> <p>I think Covariant return type theoritically is the type returned by a function that has the same signature with a built-in b...
c# java
[0, 1]
3,897,602
3,897,603
.height() only making DIV scrollable after window resize
<p>The intent of this script is to make a DIV that is 100% of the page height minus the top section.</p> <p>Here's the page:</p> <p><a href="http://nerdi.net/playground/kev/indexNEW.html" rel="nofollow">http://nerdi.net/playground/kev/indexNEW.html</a></p> <p>Here it is stripped down on jsFiddle, where it appears to...
javascript jquery
[3, 5]
4,574,534
4,574,535
Input fields not registering focus event
<p>I am confused as to why this is not doing anything (no errors):</p> <pre><code>&lt;div id="vehicle_form"&gt; &lt;input class="dField" type="email" name="email" value="Email"&gt;&lt;br/&gt; &lt;input class="dField" type="text" name="firstname" value="First Name"&gt;&lt;br/&gt; &lt;input class="dField" type="text" na...
javascript jquery
[3, 5]
317,340
317,341
Call ASP.NET Function From Javascript?
<p>I'm writing a web page in ASP.NET. I have some Javascript, and I have a submit button with an onClick event. </p> <p>Is it possible to call a method I created in ASP with Javascript's onClick event?</p>
c# asp.net javascript
[0, 9, 3]
2,472,085
2,472,086
Using "~" in a path resolves as C:\
<p>I'm trying to implement a server control that frobs a couple of files inside the web directory of an ASP.NET site. I'm using VS Web Dev Express 2008 as my IDE. When I call <code>HttpContext.Current.Request.ApplicationPath</code> to get a path to the web root so I can find those files, it returns C:. What the heck?</...
c# asp.net
[0, 9]
5,400,859
5,400,860
How to render images in real-time
<p>I am looking for a solution\software that I can use in order to render buttons in real time. That is, I have an image and text, and I want them to be an image altogether in realtime.</p> <p>Thank you</p>
c# javascript
[0, 3]
2,107,283
2,107,284
Android WebView - It would be possible to make the page is loaded in a given time
<p>I'm still starting. I wonder if it is possible to constantly reload the page within a time interval. The idea is to create a chat, where the webview carries a link that updates over a period of time for the user to read what was written. I thought about doing the following ...</p> <pre><code>webview.setWebViewClien...
java android
[1, 4]
4,365,950
4,365,951
How to hard code 7 int positions?
<p>I am using this method to retrieve some images.</p> <p>The only problem is is where </p> <pre><code>aURL = new URL(myRemoteImages[position]); </code></pre> <p>Position is i dont know how to get the position for each image in order to set the tag in my code.</p> <pre><code> i.setTag(mImageURLs[position]); </code>...
java android
[1, 4]
5,764,972
5,764,973
Jquery accordion prevent menu collaspe after postback
<p>I have a menu that is a nested ListView Control that is on my master page. I use the Jquery below to turn this ListView into a accordion. The problem is when I click on the Menu titles it will cause a postback. So the submenu flashes and ones the post back is complete it reloads the page and the menu(closing the Act...
c# jquery asp.net
[0, 5, 9]
2,236,165
2,236,166
Executing JavaScript function in Code behind -- How to Get the Return Value in Code Behind
<p>I have following JavaScript function, Which call Jquery JSON function and get the DateTime with respect to timezone. This works fine.</p> <pre><code> &lt;script type="text/javascript"&gt; function JSFunctionName() { $(document).ready(function () { var timezone = "US/Central"; $....
c# javascript jquery asp.net
[0, 3, 5, 9]
5,956,119
5,956,120
Error: 'keyCode' is null or not an object
<p>I am getting this error when i run this function</p> <pre><code>&lt;script language="javascript" type="text/javascript"&gt; //function for check digit function check_no(e) { if (!((e.keyCode &gt;= 48) &amp;&amp; (e.keyCode &lt;= 53))) { alert("Solo val...
c# javascript
[0, 3]
2,480,633
2,480,634
How set focus to text fields in android browsers?
<p>I need to set focus on the text fields in android browsers. jquery function focus() don't work. html5 attribute autofocus also don't working. May be need to remove this restriction in android os?</p>
javascript android
[3, 4]
3,064,712
3,064,713
disabling default button or enter key in asp.et c#
<p>I have a form where users scan in a barcode, the barcode reader automatically enters a carriage return in the value causing the form to submit since the browser chooses the first button as the default. How can I disable anything from happening when the enter key is pressed when entring a value in that textbox?</p>
c# asp.net javascript
[0, 9, 3]
667,061
667,062
Open a new link in a pop up is failing with unexpected T_STRING
<p>Is it possible to pop up window from a json line.</p> <p>Example, this link works fine:</p> <pre><code>$json['msg'] = 'Welcome. Please, &lt;a href="http://mylink/?chat_session='.$rows['id'].'"&gt;click here&lt;/a&gt;!'; </code></pre> <p>But when I tried to create a pop up for it, it says errors T string parsing, ...
php javascript
[2, 3]
71,274
71,275
How To replace the sequence \/ in android?
<p>Issue in UI Is:</p> <p><img src="http://i.stack.imgur.com/dA8wK.png" alt="enter image description here"></p> <p>How to replace the sequence <code>\/</code> in android?</p> <p>I Use below replace method but it show invalid escape sequences.</p> <pre><code>tempLabelForListView[i].replaceAll("\/", "") </code></pre>...
java android
[1, 4]
5,499,951
5,499,952
aspx submit form error
<p>Im working with asp.net framework 4.0 and I have this code:</p> <p>form id="form1" runat="server" method="get" action="Profile.aspx"</p> <pre><code> // some code </code></pre> <p>asp:Button runat="server" ID="SubmitButton" Text="Submit"</p> <p>Each time i click the submit button i get this error:</p> <p><stron...
c# asp.net
[0, 9]
632,007
632,008
What is 'Draw Something' Built with?
<p>I googled this and I found very little information. Anyone knows what framework (Flash?) that is used to create "Draw Something"</p> <p>Is it native?</p> <p><strong>For the thumbs down and those who voted to close</strong></p> <p>I know that this is not a programming question. However, I think this could be categ...
android iphone
[4, 8]
5,590,365
5,590,366
focus() not working - why?
<p>I have nested body elements and iframes. One from my html page, and one from the TinyMce. To the body of the tinymce I append div with many textboxes. Their ids are hi1, hi2 etc.</p> <p>This code:</p> <pre><code>$($('#petko_ifr').focus().contents()).find('#dishComments').find('#' + e.target.id) </code></pre> <p>r...
javascript jquery
[3, 5]
397,470
397,471
Find and move an object in javascript array by id of an objects
<p>I have 2 arrays of objects. Each object has an Id property. Now, if I have a 3rd array of just Ids, what is the better and faster way of finding objects from array1 based on those Ids and moving them to array2.</p> <p>Thanks a lot for answering..</p> <p>Sample code:</p> <pre><code>Person = function(id, fn, ln) { ...
javascript jquery
[3, 5]
5,615,794
5,615,795
How to write JS inside PHP code
<p>I have code like this:</p> <pre><code> &lt;?php if($key['caffe_id'] == echo "&lt;script&gt;$("#caffe").text()&lt;/script&gt;") ?&gt; </code></pre> <p>How to write this in correct manner?</p> <p>Code for explanation:</p> <pre><code>&lt;select name="caffe" id="caffe"&gt; &lt;?php foreach($caffe as $...
php javascript jquery
[2, 3, 5]
969,210
969,211
AsyncTaskDelegate Reference missing Asp.Net 4.0
<p>I'm trying to implement "PageAsyncTask" in asp.net 4.0.When i tried to declare "AsyncTaskDelegate" it showed a design time error.I checked the library reference.System.Web and Remoting are referenced but im still not able to figure out why it's missing.</p> <p>And </p> <p>AsyncMethodCaller caller = new AsyncMethod...
c# asp.net
[0, 9]
1,912,323
1,912,324
Compile XCode Projects online
<p>I'm using the mosync library for develop iPhone applications. It generates the Xcode project , now I need to compile it to make it run on a iphone. So for that I need a mac. </p> <p>do anybody know somewhere online to find online compiler which do that with a web based interface?</p> <p>--thanks in advance--</p>
iphone c++
[8, 6]
178,519
178,520
Sending text box values from my website to gmail to login into the gmail
<p>I have two text boxes in my webpage as username and submit button.</p> <p>1)Firstly user needs to give username,password,then presses the submit button.</p> <p>2)After pressing submit button,I want to send those username and password values to gmail website for logging into gmail..</p> <p>3) Means,user will be lo...
php javascript
[2, 3]
4,662,099
4,662,100
How to block form submission when the enter key or return key is pressed?
<p>I have a form that I use JQuery, I don't think I need to put code in this post, the question is pretty basic.</p> <p>But I would like to block the form from submitting when people press the Enter Key or the Return Key.</p> <p>At the same time, I have textareas, where the user will need to be able to press the Ente...
javascript jquery
[3, 5]
5,166,696
5,166,697
JQuery selector for (ASP.NET) ButtonField in GridView
<p>I have a couple of ButtonFields in my gridview, corresponding to "Edit" and "Delete".</p> <p>I'd like to use JQuery in my code for a delete confirmation popup.</p> <p>ButtonField renders as "a href"'s in HTML, but I'm at a loss in forming a JQuery selector that targets only the "Delete" link, since ButtonField doe...
asp.net jquery
[9, 5]
974,655
974,656
Random Text From jQuery Array
<p>I am trying to make an array of strings and then pluck a random string and place it in a div with class "quote". Below is my current code.</p> <pre><code>$(document).ready(function() { var quotes = new Array("foo", "bar", "baz", "chuck"); var randno = Math.floor ( Math.random() * quotes.length ); $('.q...
javascript jquery
[3, 5]
666,961
666,962
How to use jQuery to submit a form and then reload the page
<p>I'm trying to figure out if this is possible.</p> <p>I have Page-A that has Form-Foo with an action to Bar in a new window.</p> <p>Upon clicking submit, I'd like the form to submit AND Page-A to reload.</p> <p>So far I can only get one or the other to work...any pointers would be appreciated.</p> <p>In addition ...
javascript jquery
[3, 5]
4,392,344
4,392,345
One time processings of usercontrol when it is wrapped inside updatepanel
<p>Traditional way of initializing controls with the values from session state as below -</p> <pre><code>if (!IsPostBack) { if (Session["sessionId"] != null) { //initialize controls } } </code></pre> <p>Exhibits unexpected behavior when <strong>user ...
c# asp.net
[0, 9]
4,057,801
4,057,802
how to grab the Ctl from a linkbutton
<p>I have a gridview which is pulling it data from a stored procedure. In the column title, I have used a Linkbutton. I would like to grab the Ctl ID and store it in a variable when it is clicked. I am not sure what is happening, but I get a few strings going through. Below is my code and this is similar to my previous...
c# asp.net
[0, 9]
2,376,376
2,376,377
Programmatically find Android system info
<p>I am trying to programatically find the system info for Android devices, specifically:</p> <ul> <li>RAM</li> <li>CPU speed</li> <li># cores, architecture, etc.</li> </ul> <p>Are there any Android classes that specify this information. I have been using the android.board library, but it doesn't seem to have everyt...
java android
[1, 4]
4,670,291
4,670,292
Javascript file - change source at runtime from web.config
<p>I have this in my code:</p> <pre><code>&lt;script type="text/javascript" src="path?key=1234567890"&gt; &lt;/script&gt; </code></pre> <p>I added this in web.config:</p> <pre><code>&lt;appSettings&gt; &lt;add key="key" value="1234567890"/&gt; </code></pre> <p></p> <p>How to implement it in the above code?</...
javascript asp.net
[3, 9]
1,623,254
1,623,255
Javascript Validation
<p>I was just trying to submit a simple form to the same page but when it is submitted it will call PHP funtion on the same page. However I was trying to do some javascript validation before submission. So I want to know what the difference between using onSubmit call js function in the form tag and onClick call js fun...
php javascript
[2, 3]
5,398,905
5,398,906
get text area and text field data - jquery
<p>I have 2 text areas in my page as;</p> <pre><code>&lt;input type="text" id="a1"/&gt; &lt;textarea id="b2"&gt;&lt;/textarea&gt; &lt;a id="button"&gt;button&lt;/a&gt; </code></pre> <p>When user click the button link, I want to <code>alert</code> the data entered in <code>a1</code> and <code>b2</code>.</p> <p>How ca...
javascript jquery
[3, 5]
1,240,284
1,240,285
How do I refer to the values in this string in javascript
<p>I have an object with one String value in it in javascript. I believe it should be a key value pair but something is changing it so that this doesn't work:</p> <pre><code>$.each(object, function(index, element) { if (element.key) { //do something with element.key and element.value } } </code></pre> <p>The...
javascript jquery
[3, 5]
1,582,607
1,582,608
asp.net OnClientClick not rendered for initially disabled Button
<p>I have a disabled asp.Button, which I enable later with JavaScript. Like this</p> <pre><code>&lt;asp:Button ID="btnSave" runat="server" Text="Save" Enabled="false" OnClientClick="; return ValidateFields();" OnClick="btnSave_Clicked" /&gt; </code></pre> <p>However, the "onclick" method is not rendered as html when ...
c# javascript asp.net
[0, 3, 9]
1,579,955
1,579,956
how to get text width in pixel javascript or jquery?
<p>I want to get textarea text width. How to get text width in pixel. I do not want text length. </p>
javascript jquery
[3, 5]
3,127,860
3,127,861
Python for C++ Developers
<p>I'm a long time C++/Java developer trying to get into Python and am looking for the stereotypical "Python for C++ Developers" article, but coming up blank. I've seen these sort of things for C#, Java, etc, and they're incredibly useful for getting up to speed on language features and noteworthy differences. Anyone...
c++ python
[6, 7]
5,915,675
5,915,676
Load changed content via jQuery inside page
<p>i Have this:</p> <pre><code>&lt;div style='display:none' id='myDiv'&gt; &lt;input type='text' value='' id='text1'&gt; &lt;input type='text' value='' id='text2'&gt; &lt;div&gt; &lt;ul&gt; &lt;li&gt; &lt;a href="#" onClick="$('#text1').val('Hello1'); $('#text2').val('Hello2');"&gt;Load ...
javascript jquery
[3, 5]
5,001,402
5,001,403
ASP.NET Multiple Field Validation
<p>In ASP.NET 2, I've used Field Validators, and RequiredField validators, but I'm unsure of how to handle a case like this. <br> I have two check boxes on a page, and I need to be sure that at least one of them is set. So, if you look at in binary, it can be 01, 10 or 11, but it can not be 00. My question is, what t...
c# asp.net
[0, 9]
5,865,719
5,865,720
Jquery menu transition
<p>I just started learning Jquery and am making an div sliding menu, this is what I have so far.</p> <p><a href="http://jsfiddle.net/HfdXY/494/" rel="nofollow">http://jsfiddle.net/HfdXY/494/</a></p> <p>I'm not sure i'm doing this correct, so any suggestions about how I can improve this code would be appreciated.</p> ...
javascript jquery
[3, 5]
3,412,770
3,412,771
How to catch asp.net textbox1.text via jquery
<p>net textbox control. so I try to catch via jquery. but I cant. How can I do this. Thanks...</p>
javascript jquery
[3, 5]
176,028
176,029
Capture image via Android camera from browser using PHP
<p>Is it possible to capture an image using Android camera via browser with PHP or another Library for PHP? I know it can be done by phone gap, but I'm trying to do it with PHP. Because my other Project using PHP too. </p> <p>Can Anyone help me to find the solution?</p>
php android
[2, 4]
4,445,795
4,445,796
How to track redirection time in ASP.NET
<p>I am developing a comparison shopping system website which will display Amazon products. I have a functionality in it to generate url for any product and we can put that url for advertisement and when someone click on that advertisement control will first come to my website and then it will redirected to amazon proj...
c# asp.net
[0, 9]
3,827,773
3,827,774
click gets detected when function is called
<p>I have a function that looks like this:</p> <pre><code>function reset_all_lightbox_assets() { $(document).one("click", function () { $("#lightbox-asset-wrapdiv .category-asset-div-tileview").css({"background-color": "#f9f9f9"}); $("#lightbox-asset-wrapdiv .category-asset-table-td-category,#lig...
javascript jquery
[3, 5]
3,261,283
3,261,284
Where it is better to initialize field?
<p>Where it is better to initialize fields? In <strong>constructor (var.1)</strong> or on <strong>declaration (var.2)</strong>?</p> <p><strong>var. 1</strong></p> <pre><code>public class UtilWebLoading { private int data; private Context context; public UtilWebLoading(Context context) { this.context = context; ...
java android
[1, 4]
2,153,772
2,153,773
jwysiwyg to php
<p>I am using this jQuery based jWysiwyg.<br> <a href="http://code.google.com/p/jwysiwyg" rel="nofollow">http://code.google.com/p/jwysiwyg</a></p> <p>How do I pass the value of <code>$('#wysiwyg').val()</code> to php script. For example to show the value of jwysiwyg in an alert box, I am using</p> <pre><code>&lt;form...
php jquery
[2, 5]
5,184,012
5,184,013
How to route requests to a method in a class in WebForms?
<p>In MVC one can write a custom route that points to a method on a controller, i would like to achieve the same functionality with WebForms.</p> <p>If i have a route like;</p> <pre><code>Admin/{Controller}/{Action} </code></pre> <p>I would like to user a Url like the one below to invoke the Register method on a Use...
c# asp.net
[0, 9]
2,559,604
2,559,605
I am trying to redirect after someone shares a link on facebook but is not working
<p>Here is what i've tried: <a href="http://jsfiddle.net/trefu/qNDJB/1/" rel="nofollow">http://jsfiddle.net/trefu/qNDJB/1/</a> but even on direct link share i get error. I was wondering if it is possible to reveal a hidden div after user shares a link on facebook or even a redirect will be useful.</p> <pre><code> &lt...
javascript jquery
[3, 5]
3,896,714
3,896,715
do datatype choices affect performance?
<p>I have an object model that I use to fill results from a query and that I then pass along to a gridview.</p> <p>Something like this:</p> <pre><code>public class MyObjectModel { public int Variable1 {get;set;} public int VariableN {get;set;} } </code></pre> <p>Let's say variable1 holds the value of a count ...
c# asp.net
[0, 9]
5,241,814
5,241,815
How to get the number of lines in a textarea?
<p>What I would like is to count the number of lines in a textarea, e.g:</p> <pre><code>line 1 line 2 line 3 line 4 </code></pre> <p>should count up to 4 lines. Basically pressing enter once would transfer you to the next line</p> <p>The following code isn't working:</p> <pre><code>var text = $("#myTextArea").val()...
javascript jquery
[3, 5]
1,526,933
1,526,934
Select an option of select box using the value
<p>I have a dropdown box and I want to select the option based on value. Somehow I am getting handle to value say <code>3</code>. Now I want to manually select the option which has got value <code>3</code>. </p> <p>I have tried something like this </p> <pre><code>selectBoxElement.options[selectedValues].selected = tr...
javascript jquery
[3, 5]
1,366,270
1,366,271
converting function to jquery click() call
<p>Here is the code that I'm trying to convert:</p> <pre><code>&lt;script&gt; function fsomething(rowid) { window.location = "/somewhere/" + rowid; } &lt;/script&gt; &lt;tr&gt; &lt;td&gt; &lt;button onClick="fsomething('{{rowid}}')"&gt;row 1L&lt;/button&gt; &lt;/td&gt; &lt;td&gt; &lt;button onCli...
javascript jquery
[3, 5]
4,509,268
4,509,269
can we use static string in web application?
<p>can we use static string in web application?</p> <p>Is there any data switching between users who are all logged in same session?</p>
c# asp.net
[0, 9]
3,479,379
3,479,380
jquery show/hide being ignored
<p>I have a page where a user can 'like' an article.</p> <p>When the page first loads I want to show if they've already liked an article.</p> <p>The code I'm using to add html to the DOM is:</p> <pre><code>html += '&lt;div class="gl_like"&gt;'; html += '&lt;a href="#" class="like" id="'+image.article_id+'"&gt;&lt;di...
javascript jquery
[3, 5]
4,215,010
4,215,011
Get hostname of client pc via javascript or jquery
<p>I have an intranet app that needs to know where to print some labels. We have multiple workstations setup. I need a way to retrieve the host name of the client so that when they print something it comes out of the correct printer. Right now I have this being set at login but was curious if I could actually pull the ...
javascript jquery
[3, 5]
3,217,039
3,217,040
jQuery click event handlers don't work after loading html page with load()
<p>Hi I am loading several html pages on an index page depending on what link was clicked.I have a problem with the links that have asocietted click event handlers.It seems that after the jQuery loads the html file the links in that html do not have there click event handlers binded to them. Here is my code:</p> <p>Th...
javascript jquery
[3, 5]
5,752,196
5,752,197
How to populate the page via JQuery after I have the json returned
<p>Ok so i have the json object returned back from my script and I have all the data but how do I put it on the page. Here is what i have so far </p> <p>I have a php page which has a loop like this</p> <pre><code>&lt;div class="main-blue"&gt; &lt;div class="blue-items"&gt; &lt;?php foreach ($related as $row_r) { ?&gt...
php jquery
[2, 5]
2,544,321
2,544,322
Changing 3 lines of code to php from c#
<p>Can any give me some idea on how to write the following code in PHP because the below code is in C#</p> <pre><code>var response = HttpContext.Current.Response; response.Clear(); response.AppendCookie(new HttpCookie("fileDownloadToken", downloadTokenValue); response.AddHeader("Content-Disposition", string.Format("a...
c# php
[0, 2]
1,792,181
1,792,182
Auto click a hyperlink
<p>How do I automatically click a Hyerlink or LinkButton using jQuery</p> <pre><code>&lt;asp:Hyperlink id="ttt" PostBackUrl="Hut.htm"&gt;Click&lt;/asp:Hyperlink&gt;or&lt;asp:LinkButton id="ttt" PostBackUrl="Hut.htm"&gt;Click&lt;/asp:LinkButton&gt; </code></pre>
asp.net jquery
[9, 5]
2,725,906
2,725,907
How to validate at least one Checkbox is checked using JQuery?
<p>Hear is my code:</p> <pre><code>&lt;div class="reminderDiv"&gt; &lt;input type="checkbox" class="require-one" id="lmrText" name="lmrText"&gt;&lt;label&gt;Text Message&lt;/label&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;input type="checkbox" class="require-one" id="lmrPhone" name="lmrPhone"&gt;&lt;label&gt;Phon...
javascript jquery
[3, 5]
605,410
605,411
jQuery select option elements by value
<p>I have a select element wrapped by a span element. I am not allowed to use the select id but I am allowed to use the span id. I am trying to write a javascript/jquery function in which the input is a number i, which is one of the values of the select's options. The function will turn the relevant option to selected....
javascript jquery
[3, 5]
2,162,079
2,162,080
How do I tell which element a jquery click occurred on?
<p>I am handling a click on a list item with jquery:</p> <pre><code>$("#some_list li").click(function(event) { // magic happens here } </code></pre> <p>The list items look like:</p> <pre><code>&lt;li&gt;&lt;input type='checkbox'&gt;Some text&lt;span class='info'&gt;(?)&lt;/span&gt;&lt;/li&gt; </code></pre> ...
javascript jquery
[3, 5]
1,645,432
1,645,433
jQuery cartTotal result
<p>For some reason my website is displaying the word "El product(s)" instead "0 product(s)"</p> <p>Here my actual script with jquery: </p> <pre><code>cartSummary : function(){ if (jQuery('#catCartSummary .cartSummaryItem').html() != 'Shopping cart is empty.') { var summary = jQue...
javascript jquery
[3, 5]
2,153,164
2,153,165
jquery reset conditional filter
<p>I have 2 dropdown lists on my webform and using jquery trying to filter/reset filter 2nd dropdown elements based on 1st dropdown selection.</p> <pre><code>$(document).ready(function() { $('#dropdown1').change(function(e) { switch ($(this).val()) { case "4": ...
asp.net jquery
[9, 5]
3,077,372
3,077,373
run php from java
<p>Is there a way to run php server**(remote)** scripts from a java program (with secured/encrypted connection).</p>
java php
[1, 2]
5,273,394
5,273,395
ASPx set Cookie Domain
<p>I have a code as follows:</p> <pre><code> this.Response.Cookies.Add(new HttpCookie("COOKIENAME",'test')); </code></pre> <p>I want to add the domain ".test.com" for this cookie. How do I do so? I tried the standard:</p> <pre><code> this.Response.Cookies["COOKIENAME"].Domain = ".test.co.uk"; </code></pre> <p>Bu...
c# asp.net
[0, 9]
4,549,649
4,549,650
How to avoid @SuppressWarnings with anonymous inner classes in Java?
<p>I'm struggling with smarter coding style in usage of anonymous classes.</p> <p>How can I use anonymous inner class WITHOUT @SuppressWarnings in the case below?</p> <p>When using anonymous classes like this way:</p> <pre><code>someMethod( new Y(){ // non-overriding public method public void echo1(){ ...
java android
[1, 4]
2,375,876
2,375,877
dynamically adding check box asp.net( csharp) and retain its value on postback
<p>I need to add dynamically checkboxlist to a section of web page. I also need to retain its value on post back. How this should be done?</p>
c# asp.net
[0, 9]
5,183,459
5,183,460
Dynamically populate checkboxlist in Asp.Net C#
<p>In my project, in the database view I have the USERs list with their descriptions and what Type of USers are they. For Eg. Some USer Type are : DE, Some others are : admin etc etc etc.</p> <p>So now I want to populate the CheckBoxList on PageLoad.</p> <ul> <li>If CheckBoxList1 = "DE" then all the UsersNames of Typ...
c# asp.net
[0, 9]