Click on search icon a drop down icon appears. Now mouse over on user's name (on top), again a drop down appears. This drop down over lap over old drop down. this can be fixed by changing z-index or you can hide search's drop-down.
Santosh K Tripathi
Posts
-
Search UI Bug -
What is the function of Extracting String Characters in JavaScriptgood information. :)
-
I want to move slider/carousel automatically without clicking first to startwhich carousel you are using. Can you give link for fix you need?
-
How memory is allocated in .Net applicationNice Book.
-
How memory is allocated in .Net application5+ from me also. :)
-
Difference between Array and Loop.Array is a variable (in fact collection of same type of variables) to store value. while loop is process (set code) to do something. array store data but loop works on data. you can use array in loop but vise verse is not feasible (doesn't make any seance). :)
-
how about this book?Hi, Its not about English. its about shortcut 3q. only after reading comment i understood meaning of 3q. by the way your English is better than mine.
-
By using the web services/WCF of Amazon (and other retailers) my client can upload there products on Amazon (and other sites) in bulk.hi i found http://www.seesharpdot.net/?p=157[^]. it is about How to get album, dvd, and blueray cover art from Amazon. it is not what i am looking for, but helpful in understating "how to start working with Amazon APIs".
-
By using the web services/WCF of Amazon (and other retailers) my client can upload there products on Amazon (and other sites) in bulk.Hi, My requirement is "By using the web services/WCF of Amazon (and other retailers) I can upload products on Amazon (and other sites) in bulk.". I done google. read http://docs.developer.amazonservices.com and other articals on different website, but unable to find anything that I can use or understand how to use them. one more thing for sample application(using Amazon WCF/WS), Is it must to register on Amazon with your "CREDIT CARD DETAILS". if you know some good articals on it plz provide links. Thanks in advance.
-
enable / disable combobox using checkboxAdd this in HTML of chkPresent onclick=âAssignValueOnCheckboxTick(this.checked)" Now Add this in Java Script <script type="Javascript"> var cboMonth = document.getElementById('<%= cboMonth.ClientID %>'); var cboYear = document.getElementById('<%= cboYear.ClientID %>'); function AssignValueOnCheckboxTick(ischecked) { if (ischecked) { var cboMonth.style.display = 'block'; cboYear.style.display = 'block'; } else { cboMonth.style.display = 'none'; cboYear.style.display = 'none'; } } </script>
-
What is the mistake ??<!DOCTYPE html>
<html>
<body><h1>My First JavaScript</h1>
<p id="demo1">
what the hell is going on.
</p>
<p id="demo">
JavaScript can react to events. Like the click of a button.
</p><script>
function myFunction()
{
document.getElementById("demo").innerHTML="Hello JavaScript!";
document.getElementById("demo1").innerHTML="This is not working";
}
</script><button type="button" onclick="myFunction()">Click Me!</button>
</body>
</html>Try this... there is miss Sppell in document
-
add checkbox in ever row of flexgridHi, Please chcek this may b helpful for you. http://forums.asp.net/t/1639271.aspx/1[^]