-
Replied To a Post in JQuery select first chlied on clients account
I didn't understand what you saying about server and client machine, jQUery is always client. Anyway, try like this: $("#i_b_prob") .children() .removeProp("selected") .first() .prop("selected", true); -
Began Watching Do not able to start MySQL Server
From two to three days MySQL56 does not strat when window starts. It still remain in stop position. I try to start it mannualy from its shortcut menu on its … -
Replied To a Post in Do not able to start MySQL Server
First you need to know why is not starting. Does it show any errors? What message do you get when you try to start the service? Also look in the … -
Replied To a Post in resize, rotate an image/element
What you described is jqueryui Dialog widget. For rotation, I don't know any plugins, but you can try something like this: http://jsfiddle.net/d039q06t/ -
Began Watching resize, rotate an image/element
hi guys. is there a plugin or jquery ui that i missed that would allow a user to resize width or height of image/element and rotate image/element? resize something other … -
Replied To a Post in resize, rotate an image/element
Hello! For resizing use http://jqueryui.com/resizable/ For rotation, I never used, but there's a couple here: http://plugins.jquery.com/tag/rotate/ Like this one: http://jquery.jcubic.pl/rotate.php -
Replied To a Post in javascrip Cache
Sure! http://lmgtfy.com/?q=javascript+cookies -
Replied To a Post in New Dev/Game PC Advice
Mike, rubberman, thanks for the input! I'm gonna make some quotations and and I'll post the specs here later, for validation. Thanks! -
Replied To a Post in New Dev/Game PC Advice
Thanks rubberman! What processor would you suggest? About A/V scanning, i don't have any thing like that on my pc. I disable anything that isn't usefull and keep a eye … -
Created New Dev/Game PC Advice
Hello reader! I've been working in a laptop with 6GB RAM, i5, 500GB HD and I can't take it anymore! What I mostly use : 1. Office Package (word, excel, … -
Began Watching New Dev/Game PC Advice
Hello reader! I've been working in a laptop with 6GB RAM, i5, 500GB HD and I can't take it anymore! What I mostly use : 1. Office Package (word, excel, … -
Began Watching drop down
i used array function to show list of drop down but for edit the form i want to show fetched value but it show some error. my code is <td … -
Replied To a Post in drop down
Try this: foreach($busName as $code=>$bname) { $edit = (isset($_REQUEST['do'])=='edit' ? $seldata['bus_name'] : ""; echo "<option value=\"$code\" $edit>$bname</option>"; } -
Began Watching javascrip Cache
Need to set cache in browser using javascrip.If the internet is disconnected the web page is load by the same. Guide Me how will arrive this. -
Replied To a Post in javascrip Cache
There's no cache in JavaScript, just cookies in the browser. You have to set and get the cookies that you want. Simple as that. -
Began Watching set ID to dynamically created div
Hi, so i found this topic on forum.jquery [Click Here](https://forum.jquery.com/topic/is-it-possible-to-set-id-to-dynamically-created-div) and there is a way to set and ID for a dynamically created div (copy paste from the forum): var … -
Replied To a Post in set ID to dynamically created div
//You can do it normally... $("#X3").click(function() { // Do Something }); //Or you can append listener at the creation... var x=3,y=3 for (var i=0; i<x; i++){ var line=$('<div>', {id:"X"+i } … -
Began Watching count the number of times button is clicked
Hi. i am trying to show a hidden element using a button. but i want to make it so that everytime the button is clicked the hidden element get shown … -
Replied To a Post in count the number of times button is clicked
The first time the button is clicked you're going to clone it once? The second time the button is clicked you're going to show it twice? And so on? Then, … -
Began Watching Simple web downloader
The following programme is not giving me desired output: string remoteUri = "http://www.contoso.com/library/homepage/images/"; string fileName = "ms-banner.gif", myStringWebResource = null; string path = System.Windows.Forms.Application.StartupPath; // Create a new WebClient instance. … -
Replied To a Post in Simple web downloader
That's probably because "http://www.contoso.com/library/homepage/images/ms-banner.gif" is not a image anymore, it's redirecting to microsoft webpage. So you don't get a file to download. Try using an valid file URL. -
Began Watching Infinite Scroll
I have a scroll function that I want to fire when the user scrolls to the very bottom of the page. However it is doing the exact opposite; it is … -
Replied To a Post in Infinite Scroll
In the example you gave, they use this validation: if($(window).scrollTop() + window.innerHeight >= $(document).height() - 50 && !busy){ } *View Source is very usefull =)* -
Replied To a Post in Open multiple tabs in mobile browser
That's the catch... you create the link, hide it, and use JavaScript to click it. Like this: window.onload = function() { document.getElementById("myLink").click(); }; // Or with jQuery $(function() { $("#myLink").click(); … -
Began Watching drag column border
how can I drag or move my table td... any suggestion thanks in advance sir, -
Replied To a Post in drag column border
Easy and nice: http://api.jqueryui.com/draggable/ -
Began Watching Table sql
Hy i have this table, unfort i dont know how to retrieve the data from sql and to put it one under each one i have all the 18 tablesi … -
Replied To a Post in Table sql
Sorry, I couldn't understand what you are trying to do and also didn't get your problem. Please explain better. -
Replied To a Post in Improving this round robin in Javascript
With further evaluation, you could get a little more dynamic... var poslow = [1,2,3,4,5,6]; var poshigh = [7,8,9,10,11,12]; var popsRounds = [ [1, undefined, undefined], [2, 7, 6], [3, 8, … -
Began Watching Open multiple tabs in mobile browser
i have a script which uses window.open to open multiple popups in browser. But when i run that script on android browser or any mobile browser it dont work. Is … -
Replied To a Post in Open multiple tabs in mobile browser
You can use an `<a href="myPage.html" target="_blank">Open It</a>`. And use JavaScript to click it if nedeed. -
Began Watching Select 3 smallest numbers in a table column
Hi if myTable has a column like Col 10 7 3 5 9 4 How can I select three smallest numbers? my resultset should be 3 4 5 I don't … -
Replied To a Post in Select 3 smallest numbers in a table column
I'd go with SELECT TOP 3 FROM myTable ORDER BY myCol ASC -
Began Watching Improving this round robin in Javascript
Hi, I have been creating a round robin. This is similar idea to speed dating except everyone has to talk to everyone. Whilst I have been able to create this, … -
Replied To a Post in Improving this round robin in Javascript
I didn't get into the merit about the dating algorithm, but just by condensing your own logic... var poslow = [1,2,3,4,5,6]; var poshigh = [7,8,9,10,11,12]; // this function displays all … -
Began Watching copy value of one text box to another
hey guys. im trying to copy the value of a text box to another text box on button click. what i have are 2 tables: `add-guest` and `guest-list` and a … -
Replied To a Post in copy value of one text box to another
Hello, I get it what you are trying to do, but I'd do it a little different... Try like this: $(".the-names").live("click", function(){ // Gets Ro $(this).closest("tr"); // Class to handle … -
Began Watching how to update from one table to another in aspnet(C Sharp)
can u please help me with this code in charp in need to update bulk data . if t1.cola=t2.cola t1.colb=t2.colb from tab1 t1 and tab2 t2 where t2. colc is … -
Replied To a Post in how to update from one table to another in aspnet(C Sharp)
This is not CSharp, it's SQL. Try using the SQL Forum, and also provide a little more information on what you are trying to do. -
Marked Solved Status for Windows 7 Stop Charging While Playing
Hi, i'm in a pickle. I'm on a Samsung Notebook with Windows 7 installed about 2 years ago. A couple of days a go my power adaptor stoped working, so … -
Replied To a Post in Windows 7 Stop Charging While Playing
The problem was the charger. Don't know why yet, but I changed it and problem solved. Thanks. -
Replied To a Post in Windows 7 Stop Charging While Playing
Oh bullocks... I tried other games and the problem doesn't occur. They we're not so demanding of hardware, but still, I'm gonna try reinstalling the CS and see what happens. -
Replied To a Post in Windows 7 Stop Charging While Playing
Rubberman, it's stop using the charger, I tested it. And if I try playing without the battery, the computer turns off. But I've been playing this game for years and … -
Created Windows 7 Stop Charging While Playing
Hi, i'm in a pickle. I'm on a Samsung Notebook with Windows 7 installed about 2 years ago. A couple of days a go my power adaptor stoped working, so … -
Began Watching Windows 7 Stop Charging While Playing
Hi, i'm in a pickle. I'm on a Samsung Notebook with Windows 7 installed about 2 years ago. A couple of days a go my power adaptor stoped working, so … -
Began Watching Mysql Qry
hy im using to show this qry $qry = mysql_query("SELECT * ,replace(category, ',', ' ') as category FROM articles ORDER BY ID DESC LIMIT 1"); how can adapt to this … -
Replied To a Post in Mysql Qry
I really didn't get it... The first one is an SELECT and the second a INSERT, how can one become another? -
Began Watching can relationships between tables be shown as tables?
I see that there are junction tables in DBMS (http://en.wikipedia.org/wiki/Junction_table) but i need to know if generaly the relationships between tables can be shown as tables themselves. If this is … -
Replied To a Post in can relationships between tables be shown as tables?
As far as I know, Junction Table is only a concept. It's the functionality of the table, it's the purpose of the table. But it's a normal table, with fields, … -
Replied To a Post in Home Network for Database Access
Yes, mattster, it's quite simple =) Just keep in mind that if you have more than one instance installed on your DB Server, you'll need to enable SQL Browser and …
The End.