-
Stopped Watching ajax should call only once
hi, i want ajax to be called only once, but insted it calls everytime when i click on the button. my script: $(document).ready(function(){ $("#modal-launcher-user").click(function(){ $('#preloader_image_edit').show(); $.ajax({ url: "image_edit.php", cache: false, … -
Began Watching ajax should call only once
hi, i want ajax to be called only once, but insted it calls everytime when i click on the button. my script: $(document).ready(function(){ $("#modal-launcher-user").click(function(){ $('#preloader_image_edit').show(); $.ajax({ url: "image_edit.php", cache: false, … -
Replied To a Post in ajax should call only once
$('#modal-launcher-user').unbind('click'); Will remove the click handler. -
Stopped Watching Margin-bottom not working
Here is the fiddle : http://jsfiddle.net/terryds/2QNK3/ The problem is the black bar at the top of the page... It should have 5px margin-bottom.. But, it doesn't... Please help me fix … -
Began Watching Margin-bottom not working
Here is the fiddle : http://jsfiddle.net/terryds/2QNK3/ The problem is the black bar at the top of the page... It should have 5px margin-bottom.. But, it doesn't... Please help me fix … -
Replied To a Post in Margin-bottom not working
.topblack { position:relative; padding-top: 5px; } -
Stopped Watching help in this type of scrolling image
please follow this link and help me https://drive.google.com/file/d/0B6V-9RLYdFzeVUVQdzJyNnd1MEk/edit?usp=sharing visit html file and help regarding this proble -
Began Watching help in this type of scrolling image
please follow this link and help me https://drive.google.com/file/d/0B6V-9RLYdFzeVUVQdzJyNnd1MEk/edit?usp=sharing visit html file and help regarding this proble -
Replied To a Post in help in this type of scrolling image
Please explain your problem. -
Stopped Watching MVC Model cannot find definition
My error msg: <td>@Html.DropDownListFor(model => model.listVendor_Id, Model.listVendor_Id) CS1061: 'System.Collections.Generic.IEnumerable<PWIMS.ViewModel.POViewModel>' does not contain a definition for 'listVendor_Id' and no extension method 'listVendor_Id' accepting a first argument of type 'System.Collections.Generic.IEnumerable<PWIMS.ViewModel.POViewModel>' could be … -
Began Watching MVC Model cannot find definition
My error msg: <td>@Html.DropDownListFor(model => model.listVendor_Id, Model.listVendor_Id) CS1061: 'System.Collections.Generic.IEnumerable<PWIMS.ViewModel.POViewModel>' does not contain a definition for 'listVendor_Id' and no extension method 'listVendor_Id' accepting a first argument of type 'System.Collections.Generic.IEnumerable<PWIMS.ViewModel.POViewModel>' could be … -
Replied To a Post in MVC Model cannot find definition
If `Model` is the class, and `model` is the instance, use `model` instead. -
Stopped Watching how to design danamic web sites
hello i am new so need much help i like web programing -
Began Watching how to design danamic web sites
hello i am new so need much help i like web programing -
Replied To a Post in how to design danamic web sites
You'll have to ask a specific question, preferably with an example of your code. -
Stopped Watching Using PHP and C++ together. What C++ can offer?
In which **real** situations have you seen C++ usage for web applications wth PHP? I've looked throught the forum, I've asked uncle Google and I know that: - PHP extensions … -
Began Watching Using PHP and C++ together. What C++ can offer?
In which **real** situations have you seen C++ usage for web applications wth PHP? I've looked throught the forum, I've asked uncle Google and I know that: - PHP extensions … -
Replied To a Post in Using PHP and C++ together. What C++ can offer?
> Maybe some specific server-side tasks? You can use it to write UDF's for MySQL. -
Stopped Watching PHP mysqli ranking?
Hi, I'm creating a website where users can liket things and by liking things you'll see people who have liked the same thing on your home page. Now, currently my … -
Began Watching PHP mysqli ranking?
Hi, I'm creating a website where users can liket things and by liking things you'll see people who have liked the same thing on your home page. Now, currently my … -
Replied To a Post in PHP mysqli ranking?
Show some sample data (records from your table). -
Stopped Watching query for multiple values in one column
hi.please help me with mysql query. i have a table tblGrades with fields ID, Subject, Remarks. how can i create a stored procedure that will display the students that have … -
Began Watching query for multiple values in one column
hi.please help me with mysql query. i have a table tblGrades with fields ID, Subject, Remarks. how can i create a stored procedure that will display the students that have … -
Replied To a Post in query for multiple values in one column
Try something like this: SELECT Id, GROUP_CONCAT(Subject) FROM tblGrades GROUP BY Id, Remarks HAVING GROUP_CONCAT(DISTINCT Remarks) = 'Passed' -
Stopped Watching Date function not defined ?
Why am I getting an error newDate() not defined ? var thedate = newDate(1971,11,9); console.log("This person was born on:", thedate.getDay()); -
Began Watching Date function not defined ?
Why am I getting an error newDate() not defined ? var thedate = newDate(1971,11,9); console.log("This person was born on:", thedate.getDay()); -
Replied To a Post in Date function not defined ?
Missing space: var thedate = new Date(1971, 11, 9); -
Stopped Watching Relationweb on website
http://imageshack.com/a/img812/8573/if9.gif How to create such web, on website? I don't want to point (sub)website domains and relation. But I just want point relation between Word A, B, C to Z. … -
Began Watching Relationweb on website
http://imageshack.com/a/img812/8573/if9.gif How to create such web, on website? I don't want to point (sub)website domains and relation. But I just want point relation between Word A, B, C to Z. … -
Replied To a Post in Relationweb on website
The picture shows a tree, not what it represents (or not readable). Are you just interested in creating this graphically, or is there some meaning/data behind it that needs implementing … -
Stopped Watching jquery timepicker
hi there, i have a site which has a jquery datepicker in it. i went onto jquerys site and downloaded the timepicker code and tried to add this in but … -
Began Watching jquery timepicker
hi there, i have a site which has a jquery datepicker in it. i went onto jquerys site and downloaded the timepicker code and tried to add this in but … -
Replied To a Post in jquery timepicker
http://jqueryui.com/datepicker/ If you are referring to that, it's `datepicker`, and not `datepick` Also, why are you including the file twice? -
Stopped Watching PHP mysqli ranking?
Hi, I'm creating a website where users can liket things and by liking things you'll see people who have liked the same thing on your home page. Now, currently my … -
Began Watching PHP mysqli ranking?
Hi, I'm creating a website where users can liket things and by liking things you'll see people who have liked the same thing on your home page. Now, currently my … -
Replied To a Post in PHP mysqli ranking?
Although not directly an answer, this [code snippet](http://www.daniweb.com/web-development/php/code/460663/article-tagging-example) shows how it can be done for tagging, which is basically the same. You might want to show your tables, some data … -
Stopped Watching Phonegap versus Xamarin
We want to start mobile development (starting with Android). Our two most likely candidate tools at this time are Phonegap and Xamarin. I'd like to hear about any thoughts on … -
Marked Solved Status for Phonegap versus Xamarin
We want to start mobile development (starting with Android). Our two most likely candidate tools at this time are Phonegap and Xamarin. I'd like to hear about any thoughts on … -
Stopped Watching Key detection, not JavaScript
How to detect key being pressed and how to send "impulse" to PHP file about which key has been pressed? Simply Googling "PHP key detection", doesn't deliver reliable resources. Offcourse … -
Began Watching Key detection, not JavaScript
How to detect key being pressed and how to send "impulse" to PHP file about which key has been pressed? Simply Googling "PHP key detection", doesn't deliver reliable resources. Offcourse … -
Replied To a Post in Key detection, not JavaScript
> Offcourse I could use JavaScript, but I wouldn't be able to get this to PHP That's where AJAX comes in. Is it solved because you found a solution? If … -
Stopped Watching html connectivity with ms access
hi please how can i do connectivity in html with ms access using java script... -
Began Watching html connectivity with ms access
hi please how can i do connectivity in html with ms access using java script... -
Replied To a Post in html connectivity with ms access
Now it works, strange. -
Stopped Watching html connectivity with ms access
hi please how can i do connectivity in html with ms access using java script... -
Began Watching html connectivity with ms access
hi please how can i do connectivity in html with ms access using java script... -
Replied To a Post in html connectivity with ms access
http://accessdb.sourceforge.net Can't open yours, says DNS error. -
Stopped Watching Link underline
http://www.daniweb.com/web-development/php/threads/470495/trim-content#post2052543 I see the link in the code as strikethrough (Win7/IE11). Image attached.  -
Began Watching Link underline
http://www.daniweb.com/web-development/php/threads/470495/trim-content#post2052543 I see the link in the code as strikethrough (Win7/IE11). Image attached.  -
Replied To a Post in Link underline
Ah, ok. Didn't notice.
The End.